From 6f539f4b12e4b92d533619402b08863a080d936a Mon Sep 17 00:00:00 2001 From: Thomas Burkhart Date: Mon, 19 Feb 2024 19:46:48 +0100 Subject: [PATCH] updated section on the get_it_mixin to watch_it --- README.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 2272c6e..2c6fba1 100644 --- a/README.md +++ b/README.md @@ -40,9 +40,10 @@ GetIt is: - Easy to learn/use - Doesn't clutter your UI tree with special Widgets to access your data like, Provider or Redux does. -### The get_it_mixin +### watch_it + +GetIt isn't a state management solution! It's a locator for your objects so you need some other way to notify your UI about changes like `Streams` or `ValueNotifiers`. But together with my package [watch_it](https://pub.dev/packages/watch_it), it gets a full-featured easy to use state management solution that integrates with the Objects registered in get_it. -GetIt isn't a state management solution! It's a locator for your objects so you need some other way to notify your UI about changes like `Streams` or `ValueNotifiers`. But together with the [get_it_mixin](https://pub.dev/packages/get_it_mixin), it gets a full-featured easy state management solution that integrates with the Objects registered in get_it. ## Getting Started