states_rebuilder icon indicating copy to clipboard operation
states_rebuilder copied to clipboard

a simple yet powerful state management technique for Flutter

Results 27 states_rebuilder issues
Sort by recently updated
recently updated
newest added

After upgrade to flutter 3.0.0 debugPrintWhenNotifiedPreMessage always printed twice. First print with green color, Second print with blue color.

How to implement RM.injectNavigator to device_preview package ? auto_route package has ExtendedNavigator and can be implemented like [this](https://stackoverflow.com/questions/61171122/how-to-implement-both-device-preview-and-auto-route-packages-in-flutter).

_RM.scaffold.openDrawer() RM.scaffold.openEndDrawer() RM.scaffold.showBottomSheet()_ Please add an example to [ex004_00_navigation](https://github.com/GIfatahTH/states_rebuilder/tree/master/examples/ex004_00_navigation) folder how to close/hide/remove **drawer**, **endDrawer**, **bottomSheet** programmatically. I tried Navigator.back() or Navigator.pop(context), but it's give me back to previous screen...

Is there any way to add **FirebaseAnalyticsObserver** (NavigatorObserver) to **RM.injectNavigator** (InjectedNavigator)?

enhancement

In previous versions, you were able to use 'model.streamBuilder()' and have it listen to a value stream. Now with the most recent update, you can no longer do this. What...

video: https://user-images.githubusercontent.com/48729942/163563833-59af7c20-6549-4a14-b6d1-6cae9a9cf24a.mp4 ```dart import 'package:flutter/material.dart'; import 'package:states_rebuilder/states_rebuilder.dart'; class DemoScreen extends StatefulWidget { const DemoScreen({ Key? key, }) : super(key: key); @override State createState() => _DemoScreenState(); } class _DemoScreenState extends State...

bug

So, I have been working with the ARB translation tools, moving to ARB from an earlier localization project, and ran across a minor issue. I want to point out that...

Hi, as you can tell by the title, this isn't an issue 😁. Thanks a lot for this awesome package, I just went through the readme, and... wow. But then...

good first issue

Here is the starting point of your journey with `states_rebuilder`. You'll learn from simple and incremental examples the core foundation of states_rebuilder. At the end of these sets of examples,...

good first issue