본문 바로가기
Flutter

[Flutter] Setting the height of the AppBar

by hymndaniel 2023. 2. 1.

MOTIVATION

Appbar를 없애면 StatusBar를 설정해야하는데 단순하게 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: // ...
      )
    );
  }
}

 

REFERENCE

https://stackoverflow.com/questions/51089994/flutter-setting-the-height-of-the-appbar

 

Flutter: Setting the height of the AppBar

How can I simply set the height of the AppBar in Flutter? The title of the bar should be staying centered vertically (in that AppBar).

stackoverflow.com

 

 

 
728x90