fix: Status bar on Android tablets invisible

This commit is contained in:
Christian Pauly 2021-09-07 14:22:47 +02:00
parent b9c4edafcf
commit f7ec11a592
1 changed files with 6 additions and 0 deletions

View File

@ -10,6 +10,12 @@ class EmptyPage extends StatelessWidget {
Widget build(BuildContext context) {
final _width = min(MediaQuery.of(context).size.width, EmptyPage._width);
return Scaffold(
// Add invisible appbar to make status bar on Android tablets bright.
appBar: AppBar(
automaticallyImplyLeading: false,
elevation: 0,
),
extendBodyBehindAppBar: true,
body: Column(
mainAxisAlignment: MainAxisAlignment.center,
children: [