[Solved] Scaffold.geometryOf() called with a context that does not contain a Scaffold.

2022/09/14 23:16

Error message

The following assertion was thrown building Builder:
Scaffold.geometryOf() called with a context that does not contain a Scaffold.

This usually happens when the context provided is from the same StatefulWidget as that whose build function actually creates the Scaffold widget being sought.

There are several ways to avoid this problem. The simplest is to use a Builder to get a context that is "under" the Scaffold. For an example of this, please see the documentation for Scaffold.of():
  https://api.flutter.dev/flutter/material/Scaffold/of.html
A more efficient solution is to split your build function into several widgets. This introduces a new context from which you can obtain the Scaffold. In this solution, you would have an outer widget that creates the Scaffold populated by instances of your new inner widgets, and then in these inner widgets you would use Scaffold.geometryOf().

The context used was: BottomAppBar

Solution

You need to wrap a MaterialApp() outside your codes.

Leave a Reply

Back to top