Home

Published

- 1 min read

how to hide notficition bar in flutter

img of how to hide notficition bar in flutter

The solution for this is noted below

how to hide notficition bar in flutter

Solution

   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(

Try other methods by searching on the site. That is if this doesn’t work