A flexible, elegant, and secure tool for state management in Flutter. Designed with fine-grained state control in mind, it easily integrates with architectural patterns like MVVM, guarantees full independence from BuildContext, and is suitable for projects of any scale.
- 🚀 Simple and intuitive API
- 🏗️ Perfect for MVVM architecture
- 🔄 Independent from BuildContext
- 🎯 Type-safe state management
- 📡 Built-in Async and Stream support
- 🔗 Smart related states system
- 🛠️ Repository/Service layer integration
- ⚡ High performance with minimal rebuilds
- 🐛 Powerful debugging tools
- 📊 Detailed error reporting
- 🧹 Full lifecycle control with state cleaning
- 🔍 Comprehensive state tracking
- 📊 Granular state update control
- 📱 ReactiveContext: Clean context-based access with
context.lang.name
- 🔄 Widget preservation system with
.keep()
extension methods - 🎯 Generic API with
context<T>()
andcontext.getByKey<T>('key')
- ⚡ Type-specific rebuilds to prevent cross-rebuilds
Add this to your package's pubspec.yaml
file:
dependencies:
reactive_notifier: ^2.11.1
ReactiveNotifier follows a unique "create once, reuse always" approach to state management. Unlike other solutions that recreate state, ReactiveNotifier creates instances on demand and maintains them throughout the app lifecycle. This means:
- States are created only when needed, optimizing memory usage
- States persist across the app and can be accessed anywhere
- Cleanup focuses on resetting state, not destroying instances
- Organization should be done through mixins, not global variables
ReactiveContext provides a clean, intuitive way to access global reactive state directly from BuildContext without verbose API calls. This is recommended for specific use cases like language, theme, font settings, and other global app state that needs to be accessed from multiple widgets.
When to use ReactiveContext:
- Global app state (language, theme, user preferences)
- State accessed from many different widgets
- Avoiding duplicate ReactiveBuilder code across the app
When to use ReactiveBuilder:
- Granular state management
- Component-specific state
- State that requires precise rebuild control
- Complex state logic with business rules
// Define your state models
class MyLang {
final String name;
final String code;
MyLang(this.name, this.code);
}
class MyTheme {
final bool isDark;
final Color primaryColor;
MyTheme(this.isDark, this.primaryColor);
}
// Create services with ReactiveNotifier
mixin LanguageService {
static final ReactiveNotifier<MyLang> instance = ReactiveNotifier<MyLang>(
() => MyLang('English', 'en'),
);
static void switchLanguage(String name, String code) {
instance.updateState(MyLang(name, code));
}
}
mixin ThemeService {
static final ReactiveNotifier<MyTheme> instance = ReactiveNotifier<MyTheme>(
() => MyTheme(false, Colors.blue),
);
static void toggleTheme() {
final current = instance.notifier;
instance.updateState(MyTheme(!current.isDark, current.primaryColor));
}
}
// Create clean extension methods for your context
extension LanguageContext on BuildContext {
MyLang get lang => getReactiveState(LanguageService.instance);
}
extension ThemeContext on BuildContext {
MyTheme get theme => getReactiveState(ThemeService.instance);
}
// Use in your widgets with clean API
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Column(
children: [
// Clean, intuitive access to reactive state
Text('Language: ${context.lang.name}'),
Text('Theme: ${context.theme.isDark ? 'Dark' : 'Light'}'),
// Widget preservation with .keep() extension
ExpensiveWidget().keep('expensive_key'),
// Context-aware preservation
context.keep(AnotherWidget(), 'another_key'),
// Buttons to change state
ElevatedButton(
onPressed: () => LanguageService.switchLanguage('Español', 'es'),
child: Text('Switch to Spanish'),
),
ElevatedButton(
onPressed: ThemeService.toggleTheme,
child: Text('Toggle Theme'),
),
],
);
}
}
// Generic API for dynamic access
class GenericWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Column(
children: [
// Access by type
Text('Lang: ${context<MyLang>().name}'),
Text('Theme: ${context<MyTheme>().isDark}'),
// Access by key
Text('Lang: ${context.getByKey<MyLang>('lang').name}'),
Text('Theme: ${context.getByKey<MyTheme>('theme').isDark}'),
],
);
}
}
The ViewModel approach provides a robust foundation for complex state management with lifecycle hooks and powerful state control.
/// Define your state model
class CounterState {
final int count;
final String message;
const CounterState({required this.count, required this.message});
CounterState copyWith({int? count, String? message}) {
return CounterState(
count: count ?? this.count,
message: message ?? this.message
);
}
}
/// Define your ViewModel
class CounterViewModel extends ViewModel<CounterState> {
CounterViewModel() : super(CounterState(count: 0, message: 'Initial'));
@override
void init() {
// Initialization logic runs only once when created
print('Counter initialized');
}
void increment() {
transformState((state) => state.copyWith(
count: state.count + 1,
message: 'Incremented to ${state.count + 1}'
));
}
void decrement() {
transformState((state) => state.copyWith(
count: state.count - 1,
message: 'Decremented to ${state.count - 1}'
));
}
}
/// Create a mixin to encapsulate your ViewModel
mixin CounterService {
static final ReactiveNotifierViewModel<CounterViewModel, CounterState> viewModel =
ReactiveNotifierViewModel(() => CounterViewModel());
}
/// In your UI, use ReactiveViewModelBuilder
class CounterWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ReactiveViewModelBuilder<CounterViewModel, CounterState>(
viewmodel: CounterService.viewModel.notifier,
build: (state, viewmodel, keep) {
return Column(
children: [
Text('Count: ${state.count}'),
Text(state.message),
// Prevent rebuilds with keep
keep(
Row(
children: [
ElevatedButton(
onPressed: viewmodel.decrement,
child: Text('-'),
),
ElevatedButton(
onPressed: viewmodel.increment,
child: Text('+'),
),
],
),
),
],
);
},
);
}
}
For simpler state management scenarios:
/// Create a mixin to encapsulate state
mixin ThemeService {
static final ReactiveNotifier<bool> isDarkMode =
ReactiveNotifier<bool>(() => false);
static void toggleTheme() {
isDarkMode.updateState(!isDarkMode.notifier);
}
}
/// In your UI
class ThemeToggle extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ReactiveBuilder<bool>(
notifier: ThemeService.isDarkMode,
build: (isDark, notifier, keep) {
return Switch(
value: isDark,
onChanged: (_) => ThemeService.toggleTheme(),
);
},
);
}
}
ReactiveNotifier creates instances on demand, but sometimes you need to preload data at app startup. Use loadNotifier()
:
// In your main or initialization code
mixin StartupService {
static Future<void> initializeApp() async {
// Initialize critical states at startup
await UserService.userState.loadNotifier();
await ConfigService.configState.loadNotifier();
runApp(MyApp());
}
}
ReactiveNotifier promotes cleaning state rather than disposing instances:
mixin UserService {
static final userState = ReactiveNotifier<UserModel>(() => UserModel.guest());
// Recommended: Clean state (reset to empty but keep instance)
static void resetToGuest() {
userState.cleanCurrentNotifier();
}
// Alternative: Dispose completely (only if you're certain)
// Warning: If used elsewhere, this can cause issues
static void disposeCompletely() {
ReactiveNotifier.cleanupInstance(userState.keyNotifier);
}
}
// In a widget's dispose method
@override
void dispose() {
// If using auto-dispose pattern
if (widget.cleanOnDispose) {
UserService.resetToGuest();
}
super.dispose();
}
ReactiveNotifier provides a sophisticated system for managing listeners in ViewModels through the setupListeners
and removeListeners
methods. This pattern ensures proper listener lifecycle management to prevent memory leaks and unnecessary updates.
class ProductsViewModel extends AsyncViewModelImpl<List<Product>> {
// Store listener methods as class properties for reference and cleanup
Future<void> _categoryListener() async {
// Always check hasInitializedListenerExecution to prevent premature updates
if (hasInitializedListenerExecution) {
// Update logic here when category changes
}
}
Future<void> _priceListener() async {
if (hasInitializedListenerExecution) {
// Update logic here when price changes
}
}
// Define listener names for debugging (recommended practice)
final List<String> _listenersName = ["_categoryListener", "_priceListener"];
ProductsViewModel(this.repository)
: super(AsyncState.initial(), loadOnInit: true);
@override
Future<List<Product>> init() async {
return await repository.getProducts();
}
@override
Future<void> setupListeners([List<String> currentListeners = const []]) async {
// Register listeners with their respective services
CategoryService.instance.notifier.addListener(_categoryListener);
PriceService.instance.notifier.addListener(_priceListener);
// Call super with your listeners list for logging and lifecycle management
await super.setupListeners(_listenersName);
}
@override
Future<void> removeListeners([List<String> currentListeners = const []]) async {
// Unregister all listeners
CategoryService.instance.notifier.removeListener(_categoryListener);
PriceService.instance.notifier.removeListener(_priceListener);
// Call super with your listeners list for logging and lifecycle cleanup
await super.removeListeners(_listenersName);
}
}
- Create dedicated methods for each listener
- Store them as class properties (not anonymous functions)
- Use
hasInitializedListenerExecution
guard to prevent premature updates
- Define a
_listenersName
list to track active listeners - Pass this list to the parent methods for standardized logging
- Logs will show formatted information about listener setup and removal
Listeners are automatically managed at specific points:
- Setup: After initial data loading completes
- Removal: During
dispose()
, beforereload()
, and duringcleanState()
- Cleanup: Automatically handled in superclass implementations
The pattern prevents common memory leaks by ensuring:
- Listeners are properly removed when data is reloaded
- Listeners are cleaned up when the ViewModel is disposed
- No duplicate listeners are created when a ViewModel is reused
- Always call
super.setupListeners()
andsuper.removeListeners()
- Pass your listeners list to these methods for proper logging
- Use strong references to listener methods (not anonymous functions)
- Implement both methods as a pair to ensure proper cleanup
The framework automatically calls these methods at the right times:
Event | setupListeners | removeListeners |
---|---|---|
Initial load completion | ✓ | |
Before reload() | ✓ | |
During cleanState() | ✓ | ✓ |
During dispose() | ✓ |
This structured approach allows ViewModels to react to external state changes without creating memory leaks or causing unnecessary widget rebuilds.
ReactiveNotifier provides powerful APIs to listen to state changes from anywhere in your application, enabling communication between ViewModels, widgets, and services without passing references:
listen
is used to subscribe to changes in a simple ReactiveNotifier<T>
—a notifier holding a direct value.
// Returns current value and sets up listener
final currentValue = myNotifier.listen((newValue) {
// Called whenever the notifier value changes
print('New value: $newValue');
});
print('Current value: $currentValue'); // Immediate access to current state
Usage:
- Listen to updates on primitive or simple reactive values (e.g.,
int
,bool
,List<T>
) - Run side effects based on value changes (UI notifications, triggers)
- Works with reactive notifiers that directly expose the value as
T
Notes:
- Remember to stop listening with
stopListening()
to avoid memory leaks - Keep listener logic lightweight and side-effect focused
listenVM
subscribes to changes inside a ViewModel's internal state, reacting to modifications of the state.
// Returns current data and sets up listener
final currentData = myViewModel.listenVM((newState) {
// Called whenever ViewModel state changes
print('New state: $newState');
}, callOnInit: true); // Optionally call immediately with current data
print('Current data: $currentData'); // Immediate access to current data
Usage:
- Listen to the state object inside a ViewModel (e.g.,
AsyncState<T>
,CustomState
) - React to internal state changes such as loading, error, or data updates
- Enables fine-grained reactive responses tied to the ViewModel's state
Notes:
- Call
stopListeningVM()
to properly clean up listeners - Use alongside
setupListeners()
andremoveListeners()
to manage lifecycle - Listener callback receives only the updated state object, not the entire ViewModel
ReactiveNotifier enables reactive communication between ViewModels without widget coupling. ViewModels can listen to other ViewModels and automatically react to their state changes.
Real-world example: Shopping cart and sales communication without widget coupling:
// Cart ViewModel
class CartViewModel extends ViewModel<CartModel> {
CartViewModel() : super(CartModel.empty());
void addProduct(Product product) {
transformState((cart) => cart.copyWith(
products: [...cart.products, product],
total: cart.total + product.price,
));
}
void clearCart() {
updateState(CartModel.empty());
}
}
// Sales ViewModel - automatically reacts to cart changes
class SalesViewModel extends AsyncViewModelImpl<SaleModel> {
SalesViewModel() : super(AsyncState.initial(), loadOnInit: false);
CartModel? currentCart;
@override
void init() {
// Listen to cart changes - gets current cart and sets up listener
currentCart = CartService.cart.notifier.listenVM((cartData) {
// Update instance variable and react to changes
currentCart = cartData;
if (cartData.products.isNotEmpty && cartData.readyForSale) {
updateState(AsyncState.loading());
_processSaleAutomatically(cartData.products);
}
});
// Check current cart state on initialization
if (currentCart != null && currentCart!.products.isNotEmpty && currentCart!.readyForSale) {
updateState(AsyncState.loading());
_processSaleAutomatically(currentCart!.products);
}
}
// Called by user action - triggers the automatic flow
void initiateSale() {
// Mark cart as ready for sale - this triggers listenVM callback
CartService.cart.notifier.transformState((cart) => cart.copyWith(
readyForSale: true,
));
}
Future<void> _processSaleAutomatically(List<Product> products) async {
updateState(AsyncState.loading());
try {
final sale = await salesRepository.createSale(products);
updateState(AsyncState.success(sale));
// Communicate back to cart - clear after successful sale
CartService.cart.notifier.clearCart();
// Communicate to other ViewModels - update inventory
InventoryService.inventory.notifier.updateAfterSale(products);
} catch (error) {
updateState(AsyncState.error(error));
// Reset cart sale flag on error
CartService.cart.notifier.transformState((cart) => cart.copyWith(
readyForSale: false,
));
}
}
}
// Service mixins
mixin CartService {
static final ReactiveNotifier<CartViewModel> cart =
ReactiveNotifier<CartViewModel>(() => CartViewModel());
}
mixin SalesService {
static final ReactiveNotifier<SalesViewModel> sales =
ReactiveNotifier<SalesViewModel>(() => SalesViewModel());
}
// Usage: Simple button press, ViewModels handle everything
ElevatedButton(
onPressed: () {
// This triggers the entire chain:
// 1. Marks cart ready for sale
// 2. SalesViewModel automatically receives cart data via listenVM
// 3. Sale is processed automatically
// 4. Cart is cleared
// 5. Inventory is updated
SalesService.sales.notifier.initiateSale();
},
child: Text('Process Sale'),
)
Key Benefits:
- Reactive Communication: ViewModels automatically react to other ViewModel changes
- No Widget Coupling: Direct ViewModel-to-ViewModel communication
- Automatic Data Flow: Changes in one ViewModel trigger updates in dependent ViewModels
- Real-time Synchronization: State changes propagate instantly across modules
- Decoupled Architecture: Each ViewModel maintains its own responsibility while staying reactive to dependencies
The power of ReactiveNotifier lies in its ability to create reactive relationships between ViewModels. Here's the recommended pattern:
class DependentViewModel extends ViewModel<DependentState> {
DependentViewModel() : super(DependentState.initial());
// Instance variable to hold current state from other ViewModel
SourceModel? currentSourceData;
@override
void init() {
// Listen to source ViewModel reactively
currentSourceData = SourceService.sourceViewModel.notifier.listenVM((sourceData) {
// Update instance variable
currentSourceData = sourceData;
// React to changes automatically
updateMyStateBasedOnSource(sourceData);
});
// Initialize with current data
if (currentSourceData != null) {
updateMyStateBasedOnSource(currentSourceData!);
}
}
void updateMyStateBasedOnSource(SourceModel source) {
transformState((state) => state.copyWith(
sourceId: source.id,
isSourceActive: source.isActive,
// React to source changes
));
}
}
class ComplexViewModel extends AsyncViewModelImpl<ComplexData> {
ComplexViewModel() : super(AsyncState.initial(), loadOnInit: false);
// Instance variables for multiple reactive sources
UserModel? currentUser;
SettingsModel? currentSettings;
ConfigModel? currentConfig;
@override
void init() {
// Listen to multiple ViewModels reactively
currentUser = UserService.userViewModel.notifier.listenVM((userData) {
currentUser = userData;
_updateBasedOnDependencies();
});
currentSettings = SettingsService.settingsViewModel.notifier.listenVM((settingsData) {
currentSettings = settingsData;
_updateBasedOnDependencies();
});
currentConfig = ConfigService.configViewModel.notifier.listenVM((configData) {
currentConfig = configData;
_updateBasedOnDependencies();
});
// Initial update
_updateBasedOnDependencies();
}
void _updateBasedOnDependencies() {
if (currentUser != null && currentSettings != null && currentConfig != null) {
// React to any dependency change
final complexData = ComplexData.combine(
user: currentUser!,
settings: currentSettings!,
config: currentConfig!,
);
updateState(complexData);
}
}
}
This pattern creates a reactive dependency graph where ViewModels automatically stay synchronized with their dependencies.
class StatusWidget extends StatefulWidget {
@override
_StatusWidgetState createState() => _StatusWidgetState();
}
class _StatusWidgetState extends State<StatusWidget> {
late ValueNotifier<String> displayNotifier;
String? currentStatus;
@override
void initState() {
super.initState();
displayNotifier = ValueNotifier<String>('');
// Listen to global status changes - gets current status and sets up listener
currentStatus = UserService.status.listen((newStatus) {
// Update instance variable and UI
currentStatus = newStatus;
setState(() {
displayNotifier.value = 'Status: $newStatus';
});
});
// Initialize with current value
displayNotifier.value = 'Status: ${currentStatus ?? ''}';
}
@override
Widget build(BuildContext context) {
return ValueListenableBuilder<String>(
valueListenable: displayNotifier,
builder: (context, status, child) => Text(status),
);
}
}
Use listen/listenVM in ViewModel's init()
method for cross-ViewModel communication:
class NotificationViewModel extends ViewModel<NotificationModel> {
NotificationViewModel() : super(NotificationModel.empty());
UserModel? currentUser;
@override
void init() {
// Listen to user changes - gets current value and sets up listener
currentUser = UserService.userState.notifier.listenVM((userData) {
// Update instance variable and react to changes
currentUser = userData;
updateNotificationsForUser(userData);
});
// Initialize with current user data
if (currentUser != null) {
updateNotificationsForUser(currentUser!);
}
}
void updateNotificationsForUser(UserModel user) {
transformState((state) => state.copyWith(
userId: user.id,
userName: user.name,
welcomeMessage: 'Welcome ${user.name}',
));
}
}
ReactiveNotifier's related states system allows for managing interdependent states efficiently:
mixin ShopService {
// Individual state notifiers
static final ReactiveNotifier<UserState> userState =
ReactiveNotifier<UserState>(() => UserState.guest());
static final ReactiveNotifier<CartState> cartState =
ReactiveNotifier<CartState>(() => CartState.empty());
static final ReactiveNotifier<ProductsState> productsState =
ReactiveNotifier<ProductsState>(() => ProductsState.initial());
// Combined state that's aware of all related states
static final ReactiveNotifier<ShopState> shopState = ReactiveNotifier<ShopState>(
() => ShopState.initial(),
related: [userState, cartState, productsState],
);
// Access related states in three ways:
static void showUserCartSummary() {
// 1. Direct access
final user = userState.notifier;
// 2. Using from<T>()
final cart = shopState.from<CartState>();
// 3. Using keyNotifier
final products = shopState.from<ProductsState>(productsState.keyNotifier);
print("${user.name}'s cart has ${cart.items.length} items with products from ${products.categories.length} categories");
}
}
Usage: When user or cart changes, shop state automatically rebuilds without manual setup.
Always access data inside ReactiveBuilder when possible. Using .data
outside of builders won't notify of changes:
// ❌ NOT RECOMMENDED - Won't receive updates outside builder
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
final userData = UserService.userState.notifier.data; // Static data, no updates
return Text(userData.name); // Won't update when user changes
}
}
// ✅ RECOMMENDED - Always receives updates
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ReactiveViewModelBuilder<UserModel>(
viewmodel: UserService.userState.notifier,
builder: (userData, keep) {
return Text(userData.name); // Always updated when user changes
},
);
}
}
ReactiveNotifier provides multiple ways to update state with precise control:
// For simple ReactiveNotifier<T>
counter.updateState(5); // Updates and notifies widgets
counter.updateSilently(5); // Updates without rebuilding widgets
// For ViewModel<T>
userViewModel.updateState(newUser); // Updates and notifies
userViewModel.updateSilently(newUser); // Updates without notifying
// For AsyncViewModelImpl<T>
productsViewModel.updateState(newProducts); // Updates to success state and notifies
productsViewModel.updateSilently(newProducts); // Updates to success state silently
// Simple ReactiveNotifier<T>
counter.transformState((current) => current + 1);
counter.transformStateSilently((current) => current + 1);
// ViewModel<T>
user.transformState((current) => current.copyWith(name: 'New Name'));
user.transformStateSilently((current) => current.copyWith(email: 'new@email.com'));
// AsyncViewModelImpl<T> - Transform entire AsyncState
products.transformState((currentState) => AsyncState.success(newProducts));
products.transformStateSilently((currentState) => AsyncState.loading());
// AsyncViewModelImpl<T> - Transform only the data within success state
products.transformDataState((currentData) => [...?currentData, newProduct]);
products.transformDataStateSilently((currentData) => currentData?.sublist(0, 10));
// State control methods
productsViewModel.loadingState(); // Set to loading state
productsViewModel.errorState('Network error'); // Set to error state
productsViewModel.cleanState(); // Reset to initial and reload
// Data access (throws if error state)
final data = productsViewModel.data; // Get current data
final hasData = productsViewModel.hasData; // Check if has valid data
final isLoading = productsViewModel.isLoading; // Check if loading
final error = productsViewModel.error; // Get current error
For complex state that needs to be updated based on current values:
mixin CartService {
static final ReactiveNotifier<CartModel> cart =
ReactiveNotifier<CartModel>(() => CartModel.empty());
// Update with notification
static void addItem(Product product) {
cart.transformState((state) => state.copyWith(
items: [...state.items, product],
total: state.total + product.price
));
}
// Update without notification
// Useful for background calculations or preparations
static void prepareCartData(List<Product> products) {
cart.transformStateSilently((state) => state.copyWith(
recommendedItems: products,
// No UI update needed for this background change
));
}
// in this case `CartViewModel` is `AsyncViewModelImpl`
static final ReactiveNotifier<CartViewModel> cart =
ReactiveNotifier<CartViewModel>(CartViewModel.new);
// For update `transformState` we need to use `AsyncState`
// because sometimes we need a AsyncState to update the state
static void addItem(Product product) {
cart.transformState((state) => AsyncState.success(state.data.copyWith(
items: [...state.items, product],
total: state.total + product.price
)));
}
// This is directory for data
static void prepareCartData(List<Product> products) {
cart.transformDataState((state) => state.copyWith(
recommendedItems: products,
));
}
}
For simple state values:
ReactiveBuilder<bool>(
notifier: SettingsService.isNotificationsEnabled,
build: (enabled, notifier, keep) {
return Switch(
value: enabled,
onChanged: (value) => SettingsService.toggleNotifications(),
);
},
)
For ViewModel-based state:
ReactiveViewModelBuilder<ProfileViewModel, UserProfileData>(
viewmodel: ProfileService.viewModel.notifier,
build: (profile, viewmodel, keep) {
return Column(
children: [
Text(profile.name),
Text(profile.email),
keep(ElevatedButton(
onPressed: viewmodel.logout,
child: Text('Logout')
)),
],
);
},
)
For async operations with loading, error, and success states:
mixin ProductService {
static final productsViewModel = ReactiveNotifier<ProductsViewModel>(
() => ProductsViewModel(repository)
);
}
class ProductsViewModel extends AsyncViewModelImpl<List<Product>> {
final ProductRepository repository;
ProductsViewModel(this.repository)
: super(AsyncState.initial(), loadOnInit: true);
@override
Future<List<Product>> init() async {
return await repository.getProducts();
}
// Clean state when widget is disposed (don't dispose the ViewModel)
void onWidgetDispose() {
cleanState();
}
}
// In your UI
ReactiveAsyncBuilder<ProductsViewModel, List<Product>>(
notifier: ProductService.productsViewModel.notifier,
onData: (products, viewModel, keep) => ProductGrid(products),
onLoading: () => CircularProgressIndicator(),
onError: (error, stack) => Text('Error: $error'),
onInitial: () => Text('Ready to load products'),
)
For handling streams with a reactive approach:
mixin ChatService {
static final messageStream = ReactiveNotifier<Stream<Message>>(
() => firebaseRepository.getMessageStream()
);
}
// In your UI
ReactiveStreamBuilder<Message>(
notifier: ChatService.messageStream,
onData: (message) => MessageBubble(message),
onLoading: () => LoadingIndicator(),
onError: (error) => Text('Error: $error'),
onEmpty: () => Text('No messages yet'),
onDone: () => Text('Stream closed'),
)
Our ReactiveFutureBuilder
addresses some limitations of Flutter's standard FutureBuilder
:
-
No Flickering During Navigation: Unlike regular
FutureBuilder
which resets its state during rebuilds,ReactiveFutureBuilder
maintains visual continuity by displaying cached data instantly. -
Seamless State Access: Connects with a
ReactiveNotifier
to provide global access to the element's state from anywhere in the app. -
Immediate Data Display: Uses
defaultData
to show content immediately while fresh data loads in the background. -
Smart Updates: Controls whether state changes trigger UI rebuilds with the
notifyChangesFromNewState
parameter. -
Perfect for Detail Views: Ideal for master-detail patterns where you need to:
- View details of an item from a list
- Edit those details from anywhere in the app
- See changes reflected immediately in all related UI components
// Standard FutureBuilder approach (shows loading indicator on every rebuild)
FutureBuilder<Product>(
future: MyNotifier.instance.getProduct(id),
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.waiting) {
return CircularProgressIndicator(); // Flickers on navigation
}
// ...
}
)
// ReactiveFutureBuilder approach (no flickering)
ReactiveFutureBuilder<Product>(
future: MyNotifier.instance.getProduct(id),
defaultData: MyNotifierCurrentData.instance.data, // Shows immediately
createStateNotifier: ProductService.currentProductDetails, // Connect to global state
onData: (product, keep) => ReactiveBuilder(
notifier: ProductService.currentProductDetails,
// Update UI when product changes when use ProductService.currentProductDetails.updateState
),
)
ReactiveFutureBuilder
is especially valuable when:
-
Detail screens need immediate data: Users shouldn't see loading indicators when returning to previously loaded screens.
-
Elements need their own reactive state: When you want to update a specific element globally and have all views of that element update automatically.
-
UI consistency is critical: Applications where a professional, native feel is important benefit from the flickerless navigation experience.
This simple implementation provides a significant UX improvement with minimal added complexity.
ReactiveContext provides advanced performance optimization through its widget preservation system and type-specific rebuilds.
The enhanced widget preservation system provides multiple intuitive ways to prevent unnecessary rebuilds:
class MyWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return Column(
children: [
// This rebuilds when language changes
Text('Language: ${context.lang.name}'),
// Widget preservation with .keep() extension
ExpensiveWidget().keep('expensive_key'),
// Context-aware preservation
context.keep(AnotherWidget(), 'another_key'),
// Batch preservation
...context.keepAll([
Widget1(),
Widget2(),
Widget3(),
], 'batch_key'),
// Preserve with reactive state dependency
context.preserveReactive(
ComplexWidget(data: someData),
ThemeService.instance,
'reactive_preserved'
),
// Preserve with builder pattern
context.preserveReactiveBuilder<MyTheme>(
ThemeService.instance,
(theme) => StyledWidget(theme: theme),
'themed_widget'
),
],
);
}
}
Unlike traditional state management where all widgets rebuild when any state changes, ReactiveContext implements type-specific rebuilds:
// Only widgets using MyLang will rebuild when language changes
Text('Language: ${context.lang.name}'),
// Only widgets using MyTheme will rebuild when theme changes
Container(color: context.theme.primaryColor),
// Only widgets using CounterState will rebuild when counter changes
Text('Count: ${context.counter.value}'),
This prevents the common "cross-rebuilds" problem where changing the theme would unnecessarily rebuild language-related widgets.
For maximum performance, use ReactiveOptimizer
to force InheritedWidget strategy:
MaterialApp(
home: ReactiveOptimizer(
// Force InheritedWidget strategy for optimal performance
forceInheritedFor: [
LanguageService.instance,
ThemeService.instance,
CounterService.instance,
],
child: MyHomePage(),
),
)
The traditional keep
function is still available for ReactiveBuilder and other reactive components:
ReactiveBuilder<int>(
notifier: CounterService.counter,
build: (count, notifier, keep) {
return Column(
children: [
// Rebuilds when count changes
Text('Count: $count'),
// These widgets will NOT rebuild when count changes
keep(
Image.asset('assets/counter_image.png'),
),
// Even another ReactiveBuilder inside keep won't rebuild when the parent rebuilds
// Only rebuilds when ThemeService.isDarkMode changes
keep(
ReactiveBuilder<bool>(
notifier: ThemeService.isDarkMode,
build: (isDark, themeNotifier, innerKeep) {
return Card(
color: isDark ? Colors.grey[800] : Colors.white,
child: Padding(
padding: const EdgeInsets.all(16.0),
child: Text(
'Theme card with count: $count',
style: TextStyle(
color: isDark ? Colors.white : Colors.black,
),
),
),
);
},
),
),
const ExpensiveWidget(),
const ElevatedButton(
onPressed: CounterService.increment,
child: const Text('Increment'),
),
],
);
},
)
ReactiveContext provides extensive debugging capabilities:
// Print debug information
context.debugReactiveContext();
// Get debug statistics
final debugInfo = context.getReactiveDebugInfo();
print('Active notifiers: ${debugInfo['activeNotifiers']}');
// Clean up resources
context.cleanupReactiveContext();
- Extension Method Preservation: Use
widget.keep('key')
for direct widget preservation - Context-Aware Preservation: Use
context.keep(widget, 'key')
for dynamic scenarios - Batch Preservation: Use
context.keepAll([widgets], 'key')
for multiple widgets - Reactive Preservation: Use
context.preserveReactive()
for state-dependent widgets - Automatic Key Management: Keys are auto-generated if not provided
- Memory Management: Built-in cache cleanup prevents memory leaks
- Type-Specific Rebuilds: Only widgets using changed state types rebuild
- Performance Monitoring: Built-in debug statistics and logging
Benefits of ReactiveContext widget preservation:
- Intuitive API: Clean extension methods instead of manual wrappers
- Better Performance: Type-specific rebuilds prevent unnecessary updates
- Automatic Management: Smart key generation and cache cleanup
- Flexible Usage: Multiple preservation strategies for different use cases
- Debug Support: Built-in monitoring and statistics
ReactiveNotifier provides extensive debugging information:
🔧 ViewModel<UserState> created
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ID: instance_123
Location: package:my_app/user/user_viewmodel.dart:25
Initial state hash: 42
📝 ViewModel<UserState> updated
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
ID: instance_123
Update #: 1
New state hash: 84
⚠️ Invalid Reference Structure Detected!
━━━━━━━━━━━━━━━━━━━━━━━━━━━━━━
Current Notifier: CartState
Key: cart_key
Problem: Attempting to create a circular dependency
Solution: Ensure state relationships form a DAG
Location: package:my_app/cart/cart_state.dart:42
ReactiveFutureBuilder
combines Flutter's FutureBuilder
with reactive state management to avoid UI flickering and keep data synchronized globally.
- Displays
defaultData
immediately to avoid flickering when navigating back - Updates a
ReactiveNotifier<T>
with Future results for shared state - Uses a
keep
function to prevent unnecessary widget rebuilds - Handles all Future states: initial, loading, error, and success
ReactiveFutureBuilder<OrderItem?>(
future: OrderService.instance.notifier.loadById(orderId),
defaultData: OrderService.instance.notifier.getByPid(orderId),
createStateNotifier: OrderService.currentOrderItem,
onData: (order, keep) => keep(OrderDetailView(order: order!)),
onLoading: () => const CircularProgressIndicator(),
onError: (error, _) => Text('Error: $error'),
)
Parameter | Description |
---|---|
future |
The Future that provides data |
defaultData |
Data to display immediately while waiting for the Future |
onSuccess (deprecated) |
Deprecated simple success builder, use onData instead |
onData |
Builder function receiving data and a keep widget wrapper to avoid rebuilds |
onLoading |
Widget displayed while loading |
onError |
Widget displayed on error |
onInitial |
Widget shown before the Future starts |
createStateNotifier |
ReactiveNotifier<T> updated with the Future's data |
notifyChangesFromNewState |
Whether to notify listeners on updates or update silently |
Always organize ReactiveNotifier instances using mixins, not global variables:
// GOOD: Using mixins
mixin AuthService {
static final ReactiveNotifier<UserState> userState =
ReactiveNotifier<UserState>(() => UserState.guest());
static void login(String username, String password) {
// Implementation
}
}
// BAD: Don't use global variables
final userState = ReactiveNotifier<UserState>(() => UserState.guest());
Never create ReactiveNotifier instances inside widgets:
// GOOD: Access through mixin
class ProfileWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ReactiveBuilder(
notifier: UserService.profileState,
builder: (profile, keep) => Text(profile.name),
);
}
}
// BAD: Don't create instances in widgets
class BadProfileWidget extends StatelessWidget {
@override
Widget build(BuildContext context) {
// DON'T DO THIS - creates a new instance on every build
final profileState = ReactiveNotifier<Profile>(() => Profile());
// ...
}
}
Clean state appropriately when widgets are disposed:
class UserProfileScreen extends StatefulWidget {
@override
_UserProfileScreenState createState() => _UserProfileScreenState();
}
class _UserProfileScreenState extends State<UserProfileScreen> {
@override
void initState() {
super.initState();
// Optionally prepare initial state without notifications
UserService.profileState.updateSilently(Profile.loading());
}
@override
void dispose() {
// Reset state but keep the instance
UserService.resetProfile();
super.dispose();
}
@override
Widget build(BuildContext context) {
return ReactiveBuilder(
notifier: UserService.profileState,
builder: (profile, keep) {
// UI implementation
},
);
}
}
Use transformState with copyWith for efficient state updates:
mixin FormService {
static final formState = ReactiveNotifier<FormState>(() => FormState.empty());
static void updateEmail(String email) {
formState.transformState((state) => state.copyWith(email: email));
}
static void updatePassword(String password) {
formState.transformState((state) => state.copyWith(password: password));
}
// Use transformStateSilently for non-UI updates
static void recordLastValidation() {
formState.transformStateSilently((state) =>
state.copyWith(lastValidated: DateTime.now()));
}
}
ReactiveNotifier makes testing straightforward by leveraging the original mixin and directly updating its state:
// Example test for CounterViewModel
void main() {
group('CounterViewModel Tests', () {
setUp(() {
// Setup before each test
ReactiveNotifier.cleanup(); // Clear previous states
// Use the original mixin but update with mock data - recommended approach
CounterService.viewModel.notifier.updateSilently(MockCounterState(
count: 5,
message: 'Test Initial State'
));
});
testWidgets('should display counter value', (WidgetTester tester) async {
await tester.pumpWidget(
MaterialApp(
home: CounterWidget(), // Use the actual widget that uses CounterService
),
);
// Verify the widget displays the mocked state
expect(find.text('Count: 5'), findsOneWidget);
// Update state for the next test assertion
CounterService.viewModel.notifier.increment();
await tester.pump();
// Verify widget updated correctly
expect(find.text('Count: 6'), findsOneWidget);
});
test('service actions should update state correctly', () {
// Set initial state for this specific test
CounterService.viewModel.notifier.updateSilently(MockCounterState(
count: 0,
message: 'Fresh Test State'
));
// Use the actual service methods
CounterService.increment();
// Verify state was updated correctly
expect(CounterService.viewModel.state.count, equals(1));
expect(CounterService.viewModel.state.message, contains('Incremented'));
});
});
}
// Mock model for testing
class MockCounterState extends CounterState {
MockCounterState({required int count, required String message})
: super(count: count, message: message);
}
This approach has several advantages:
- It uses the actual service mixin.
- No override.
- No container provider or similar.
- No force specific patter for testing, just natural :).
- It tests the real components with controlled data.
- It's simple and doesn't require complex mocking frameworks.
- It maintains the singleton pattern even during testing.
For specific test scenarios, you can easily reset or prepare different states:
// Before a specific test case
test('specific scenario', () {
// Prepare specific test state
CounterService.viewModel.notifier.updateSilently(MockCounterState(
count: 100,
message: 'Specific test scenario'
));
// Run test logic...
});
Testing with ReactiveNotifier follows its core philosophy: use the same instances but control their state directly.
ReactiveNotifier is designed to work optimally with modular applications, following a feature-based MVVM architecture. We recommend the following project structure, although you can use the names and architecture that suit your needs. This example aims to give a clearer idea of the power of this library.
src/
├── auth/ # A specific feature
│ ├── ui/
│ │ ├── layouts/
│ │ ├── views/
│ │ ├── widgets/
│ │ └── screens/
│ ├── model/
│ │ ├── user_model.dart
│ │ └── credentials_model.dart
│ ├── viewmodel/
│ │ └── auth_viewmodel.dart
│ ├── repository/ # Only if required
│ │ └── auth_repository.dart
│ ├── routes/ # Only if required
│ │ └── auth_routes.dart
│ └── notifier/
│ └── auth_notifier.dart (mixin)
│
├── dashboard/ # Another specific feature
│ ├── ui/
│ │ ├── layouts/
│ │ ├── views/
│ │ ├── widgets/
│ │ └── screens/
│ ├── model/
│ │ └── dashboard_model.dart
│ ├── viewmodel/
│ │ └── dashboard_viewmodel.dart
│ ├── repository/
│ │ └── dashboard_repository.dart
│ └── notifier/
│ └── dashboard_notifier.dart (mixin)
│
├── profile/ # Another specific feature
│ ├── ui/
│ ├── model/
│ ├── viewmodel/
│ ├── repository/
│ └── notifier/
│
└── core/ # Shared core components
├── api/
├── theme/
└── utils/
Each feature follows the complete MVVM pattern with its own internal structure. This modular feature-based architecture allows for independent development and keeps related functionality grouped together.
ReactiveNotifier facilitates direct communication between modules without complex event systems. All logic can occur within the ViewModel, Notifier, or even the Repository.
// In auth_viewmodel.dart
Future<void> login(String email, String password) async {
try {
// ... login code
// After successful login, update other modules
// Note we're not using 'related', but direct communication
// Update dashboard with user data
DashboardNotifier.dashboardState.updateState(
DashboardModel.forUser(user)
);
// Prepare profile data silently (without rebuilding UI yet)
ProfileNotifier.profileState.updateSilently(
ProfileModel.fromUser(user)
);
// Cart might require additional data.
CartNotifier.cartState.updateStateFromUserId(user.id);
} catch (e) {
// Error handling
}
}
// In payment_notifier.dart
mixin PaymentNotifier {
static final paymentState = ReactiveNotifier<PaymentViewModel>(
() => PaymentViewModel(),
);
static Future<void> processPayment(String orderId) async {
try {
final result = await paymentState.notifier.processPayment(orderId);
if (result.success) {
// Update other modules after successful payment
OrderNotifier.orderState.notifier.updateOrderStatus(
orderId,
'PAID'
);
CartNotifier.cartState.notifier.clearCart();
NotificationNotifier.notificationState.notifier.addNotification(
NotificationModel(
title: 'Payment Successful',
body: 'Your order #$orderId has been paid.',
type: NotificationType.success,
),
);
}
} catch (e) {
// Error handling
}
}
}
// In order_repository.dart
class OrderRepositoryImpl {
// ... other methods
Future<OrderModel> createOrder(CartModel cart) async {
try {
// API call to create order
final orderResponse = await _client.post(...);
final newOrder = OrderModel.fromJson(orderResponse);
// Update related modules directly from repository
CartNotifier.cartState.notifier.setOrderId(newOrder.id);
// We can even trigger navigation if needed
NavigationNotifier.navigate('order_confirmation', params: {'id': newOrder.id});
return newOrder;
} catch (e) {
throw Exception('Failed to create order: $e');
}
}
}
The main advantage of this approach is that it keeps business logic and cross-module communication in the appropriate layers (ViewModel, Repository), leaving the UI clean and focused solely on presentation. No complex event systems, or additional controllers are required.
For detailed information about advanced features and patterns, check out our comprehensive guides:
- ReactiveContext Guide - Complete guide to clean context-based state access
- Dispose and Recreation Guide - Memory management and instance lifecycle control
- Architecture Guide - Recommended patterns and project structure
- Widget Preservation - Advanced
.keep()
system for performance optimization - Cross-ViewModel Communication - Reactive communication patterns between ViewModels
- Testing with ReactiveNotifier - Complete testing strategies and patterns
- When to use ReactiveContext vs ReactiveBuilder - Decision guide for choosing the right approach
- Performance Best Practices - Optimization techniques and patterns
- Migration Guide - Moving from ReactiveBuilder to ReactiveContext
Check out our example app for more comprehensive examples and use cases.
- Fork it
- Create your feature branch (
git checkout -b feature/amazing
) - Commit your changes (
git commit -am 'Add amazing feature'
) - Push to the branch (
git push origin feature/amazing
) - Create a new Pull Request
- 🌟 Star the repo to show support
- 🐛 Create an issue for bugs
- 💡 Submit feature requests through issues
- 📝 Contribute to the documentation
This project is licensed under the MIT License - see the LICENSE file for details.
Made with ❤️ by JhonaCode