Make flutter application fullscreen

前端 未结 7 1500
忘了有多久
忘了有多久 2020-12-25 10:05

How can I make a flutter application fullscreen. I already found out how to hide the status bar Hide Android Status Bar On Flutter App. but I can\'t seem to find how to hide

7条回答
  •  陌清茗
    陌清茗 (楼主)
    2020-12-25 10:34

    The AppBar is your Navigation bar so just remove it from your Code as illustrate below

    //New This Code it should work , the AppBar is navigation bar

    import 'package:flutter/material.dart';
    
    void main() => runApp(new MyApp());
    
    class MyApp extends StatelessWidget {      
       @override
       Widget build(BuildContext context) {
          return new MaterialApp(
             home: new Scaffold(
               body: new Center(
                  child: new Text('Hello World'),
               ),
             ),
          );
       }
    }
    

提交回复
热议问题