Answers for "how to hide notficition bar in flutter"

1

how to hide notficition bar in flutter

import 'package:flutter/services.dart';
 SystemChrome.setEnabledSystemUIMode(SystemUiMode.leanBack);

*** Example***

class _AppPageState extends State<AppPage> {
  @override
  Widget build(BuildContext context) {
    SystemChrome.setEnabledSystemUIMode(SystemUiMode.leanBack);
    return Scaffold(
Posted by: Guest on March-24-2022
0

how to hide the status bar and navigation bar in flutter

import 'package:flutter/services.dart';


@override
  Widget build(BuildContext context) {
    SystemChrome.setEnabledSystemUIOverlays([]);
    return Container(
      width: MediaQuery.of(context).size.width,
      height: MediaQuery.of(context).size.height,
      child: Column('Some text'),
    );
  }
Posted by: Guest on December-21-2020
0

flutter hide top bar

SystemChrome.setEnabledSystemUIOverlays([SystemUiOverlay.bottom])
Posted by: Guest on July-09-2021

Code answers related to "how to hide notficition bar in flutter"

Browse Popular Code Answers by Language