heliomarpm / flutter-learn_riverpod

Sample with Riverpod

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

learn_riverpod

Pequeno estudo sobre o componente Riverpod

Tutorial

Flutter Map Exercises

    //! Riverpod set up
    ProviderScope

    //! Easy level
    State Provider

    ConsumerWidget
    ref.watch(riverpod)
    ref.read(riverppod.notifier).state

    //! Hard level (with model)
    ChangeNotifierProvider
    ChangeNotifier
    notifyListeners

    ConsumerWidget
    ref.watch(riverpod).name
    ref.read(riverpod).changeName(newValue)

Stack

  • flutter sdk: '>=3.2.6 <4.0.0'
  • flutter_riverpod: ^2.4.10

Screenshots

Getting Started

This project is a starting point for a Flutter application.

A few resources to get you started if this is your first Flutter project:

For help getting started with Flutter development, view the online documentation, which offers tutorials, samples, guidance on mobile development, and a full API reference.

About

Sample with Riverpod


Languages

Language:Dart 97.4%Language:Kotlin 2.6%