Flutter hide navigation bar through check list

Viewed 29

I'm really new to flutter but is it possible to hide the (appbar) navigation bar through the checkbox programmatically?

1 Answers

Use a bool variable for eg: showAppBar and use like this

Scaffold(
      appBar:showAppBar? AppBar():null,
)
Related