Best of FlutterJanuary 2022

  1. 1
    Article
    Avatar of itnextITNEXT·4y

    Flutter: types of widgets

    Widgets are an immutable description of part of a user interface. A widget is a widget that does not require mutable state. State is information that can be read synchronously when the widget is built and might change during the lifetime of the widget. Inherited widgets will cause the consumer to rebuild when the inherited widget itself changes state.

  2. 2
    Article
    Avatar of flutter_comFlutter Community·4y

    Flutter bloc for beginners

    Flutter bloc is one of the state management for Flutter applications. You can use it to handle all the possible states of your application in an easy way. It is simple to use because you and your team are going to understand the concept quickly. The library has very good documentation with a tons of examples.

  3. 3
    Article
    Avatar of towardsdevTowards Dev·4y

    State Management in Flutter.

    Managing state in an application is one of the most important and necessary processes in the life cycle of an application. The two state types that are normally considered are ephemeral state (also known as UI state or local state ) and app state (sometimes also called shared state) In other words, there is no need to use state management techniques (ScopedModel, Redux, Provider, etc.) on this kind of state.

  4. 4
    Article
    Avatar of flutter_comFlutter Community·4y

    5 tips to Learn Flutter Like a Pro [from a Flutter course creator]

    Nick Manning has been teaching Flutter for four years. He shares five tips for newcomers to Flutter. Set up a public GitHub repository with some simple code you may be working on, even if it’s something you’re toying around with. Stop learning what the best “State Management’ package is. Don’t copy and paste code in email or a DM.