1. ホーム
  2. dart

[解決済み] フラッター AppBarの高さを設定する

2022-04-28 07:36:07

質問

の高さを簡単に設定するにはどうしたらよいですか? AppBar をFlutterで表示できますか?

バーのタイトルは、垂直方向の中央に留まっている必要があります(その中の AppBar ).

解決方法は?

を使用することができます。 希望サイズ :

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: // ...
      )
    );
  }
}