Month: January 2024
Posted in flutter
Flutter’s (Stateful) Widget Lifecycle
Every Flutter Widget has a built-in lifecycle: A collection of methods that are automatically executed by Flutter (at certain points of time). There are three extremely important (stateful) widget lifecycle methods…
Posted in flutter
Flutter: Deep Dive: Position & Named Arguments
In the previous lecture, you learned about “positional” and “named” arguments/parameters. In general, function parameters/arguments (the term is used interchangeably here) are a key concept. You…