📌  相关文章
📜  我怎样才能减小应用栏的大小 - 无论代码示例

📅  最后修改于: 2022-03-11 14:59:30.685000             🧑  作者: Mango

代码示例1
class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Example',
      home: Scaffold(
        appBar: PreferredSize(
          preferredSize: Size.fromHeight(50.0), // here the desired height
          child: AppBar(
            // ...
          )
        ),
        body: // ...
      )
    );
  }
}