You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
samples/provider_counter
Brett Morgan 63235a729a
Update `pubspec.lock` and friends (#1076)
2 years ago
..
android Update provider_counter Android files (#1024) 2 years ago
ios Update `pubspec.lock` and friends (#1076) 2 years ago
lib Add window setup to provider_counter (#1046) 2 years ago
macos Update `pubspec.lock` and friends (#1076) 2 years ago
test Enforce `use_key_in_widget_constructors` and `file_names` lints (#913) 3 years ago
web provider_counter: update android and ios, add macos and web (#235) 5 years ago
.gitignore Maintenance for provider_counter (#165) 5 years ago
.metadata Move scoped_model_counter to provider_counter (#82) 5 years ago
README.md Move scoped_model_counter to provider_counter (#82) 5 years ago
analysis_options.yaml Centralize analysis options (#957) 3 years ago
pubspec.lock Remove git:// url, update deps, fix `destop_photo_search` (#1052) 2 years ago
pubspec.yaml Remove git:// url, update deps, fix `destop_photo_search` (#1052) 2 years ago

README.md

Provider Counter

The starter Flutter application, but using Provider to manage state.

This app is a direct counterpart to the simple counter application that you get when you create a new Flutter project. That one uses a StatefulWidget to manage application state. The version in this repository uses a simple app state management approach, Provider.

It shows how you might deal with state that is modified from outside the app (for example, state synchronized over network) and which needs to be accessed and changed from different parts of your app.

Getting Started

The only important part of the app is the lib/main.dart file. It has comments that will walk you through it.

For more information on the provider package (where Provider comes from), please see the package documentation.

For more information on state management in Flutter, and a list of other approaches, head over to the State management page at flutter.dev.