Pooja Bhaumik

Results 4 comments of Pooja Bhaumik

I can also vouch for the above solution. Having an active emulator in the background causes this problem.

``` final greeting = Provider((ref) => "hello world"); void main() { final container = ProviderContainer(); print(container.read(greeting)); // "hello world" runApp( UncontrolledProviderScope( container: container, child: MyApp(), ), ); } ``` With...

To give more context, this is related to initialising SharedPreferences in main, where earlier I had ```var sharedPreferencesServiceProvider = Provider((_) => throw UnimplementedError());``` And after getting the instance of SP,...

@allanchao This is only happening for Android platfrom, right? And if yes, can you check your `build.gradle` and post it here?