Search code examples
flutterflutter-bottomnavigation

Flutter bottomNavigationBar error 'Page value is only available after content dimensions are established.'


I have a problem with my bottomNavigationBar in Flutter. When i add a bottomNavigationBar before page loaded i get this error.

 bottomNavigationBar:  _buildnavigationBar()

Solution

  • This fixed my issue.

    bottomNavigationBar: (_controller.hasClients )  ? _buildnavigationBar() : Row() ,