web-dev-qa-db-fra.com

Faire une application flutter en plein écran

Comment puis-je faire une application flutter en plein écran. J'ai déjà découvert comment masquer la barre d'état Masquer Android Barre d'état sur l'application Flutter . Mais je n'arrive pas à trouver comment masquer le Android.

19
Bobola

C'est exactement comme pour Android barre d'état. Faire SystemChrome.setEnabledSystemUIOverlays([]) masque à la fois la barre d'état et la barre de navigation.

34
Rémi Rousselet
// to hide only bottom bar:
SystemChrome.setEnabledSystemUIOverlays ([SystemUiOverlay.top]);

// to hide only status bar: 
SystemChrome.setEnabledSystemUIOverlays ([SystemUiOverlay.bottom]);

// to hide both:
SystemChrome.setEnabledSystemUIOverlays ([]);
7
Jawad

Le code ci-dessous fonctionne parfaitement en plein écran

SystemChrome.setEnabledSystemUIOverlays(SystemUiOverlay.values);
@override
Widget build(BuildContext context) {
///Set color status bar
 SystemChrome.setEnabledSystemUIOverlays(SystemUiOverlay.values);
   return Scaffold(
   backgroundColor: Colors.white,
   body: Center(
    child: Column(
      mainAxisAlignment: MainAxisAlignment.center,
      children: <Widget>[
        Image.asset(
          'images/ic_splash_logo.png',
          width: 97.0,
          height: 115.0,
          fit: BoxFit.contain,
        ),
        SizedBox(
          height: 10.0,
        ),
        Text(
          'iComplain',
          style: TextStyle(fontSize: 24,
              color: Color(0xFF174D73),
            fontFamily: 'Helvetica'
          ),
        ),
      ],
     ),
    ),
  );
}
0
Faisal Ahmed