ECEmir Cihangirincihangir-on-software.hashnode.dev·Aug 3 · 6 min readWhat Is BuildContext?If you are a Flutter developer, it is almost impossible not to encounter BuildContext. When Flutter builds a widget, it supplies a BuildContext to its build method. Whenever you try to access the them00
ECEmir Cihangirincihangir-on-software.hashnode.dev·Jul 29 · 5 min readDisplaying async values in FlutterThe build method in Flutter widgets is synchronous. That means it doesn’t like to wait for anything. But sometimes, we need to wait for a value to arrive in order to display it. Let’s think of a simpl00