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