Answers for "how i hide tab bar and app bar in flutter"

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 appbar hide

//Solution 1
appBar: boolTrue ? AppBar(...) : PreferredSize(preferredSize: Size(0.0, 0.0),child: Container(),)

//Solution 2
appBar: boolTrue ? AppBar(...) : null
Posted by: Guest on December-01-2021

Browse Popular Code Answers by Language