|
|
|
@ -29,7 +29,11 @@ class AppScaffold extends StatelessWidget {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
AppGlobal.CONTEX = context;
|
|
|
|
AppGlobal.CONTEX = context;
|
|
|
|
ProjectViewModel projectProvider = Provider.of(context);
|
|
|
|
ProjectViewModel projectProvider = Provider.of(context);
|
|
|
|
return Scaffold(
|
|
|
|
return GestureDetector(
|
|
|
|
|
|
|
|
onTap: (){
|
|
|
|
|
|
|
|
FocusScope.of(context).requestFocus(new FocusNode());
|
|
|
|
|
|
|
|
},
|
|
|
|
|
|
|
|
child: Scaffold(
|
|
|
|
backgroundColor: Colors.white,
|
|
|
|
backgroundColor: Colors.white,
|
|
|
|
appBar: isShowAppBar
|
|
|
|
appBar: isShowAppBar
|
|
|
|
? AppBar(
|
|
|
|
? AppBar(
|
|
|
|
@ -76,6 +80,7 @@ class AppScaffold extends StatelessWidget {
|
|
|
|
],
|
|
|
|
],
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
|