Flutter hides the navigation bar while allowing to set the status bar

1  Scaffold (
 2        body: Stack (
 3         children: < Widget > [
 4             transparentAppBar (brightness: Brightness.light), // Brightness transparent navigation bar can be set. BackgroundColor: Colors.transparent, leftItem: Container (),
 5            Container ( ),        
 6         ],
 7       ),
 8   ),    

 

Guess you like

Origin www.cnblogs.com/sonofdark/p/12760815.html