I'm really new to flutter but is it possible to hide the (appbar) navigation bar through the checkbox programmatically?
I'm really new to flutter but is it possible to hide the (appbar) navigation bar through the checkbox programmatically?
Use a bool variable for eg: showAppBar and use like this
Scaffold(
appBar:showAppBar? AppBar():null,
)