provider icon indicating copy to clipboard operation
provider copied to clipboard

InheritedWidgets, but simple

Results 41 provider issues
Sort by recently updated
recently updated
newest added

https://pub.dev/documentation/provider/latest/provider/Selector-class.html You give a complex example with tuple at once. It looks difficult for beginners. Consider adding an example for 1 value before, like this: ``` Here's an example: Selector(...

documentation

**Describe the bug** The `Provider` tab in version 2.8 of the DevTools shows the list of Providers available in an app, but it doesn't let developers inspect the content of...

bug

I have a use case, where is seems like a combination of read and select would be nice. Or maybe there is another way I'm not aware of. I basically...

enhancement

Consider the following example: ```dart void main() async { runApp(Provider( create: (ctx) => 1, child: MaterialApp( theme: ThemeData(textTheme: TextTheme(body1: TextStyle(fontSize: 32, height: 1.5))), home: Scaffold( body: SafeArea( child: Column( children:...

enhancement

**Is your feature request related to a problem? Please describe.** I am creating a "disposable/closeable" object with FutureProvider that needs its resources released. **Describe the solution you'd like** Expose dispose...

enhancement

Are there any plans to implement this for providers? https://docs.google.com/document/d/1KIiq5CdqnSXxQXbZIDy2Ukc-JHFyLak1JR8e2cm3eO4/edit#

enhancement

I want to create a ChangeNotifierProvider with passed values from route arguments (im using Fluro for routing) like this: ```dart _fluroRouter.define(BusinessListPage.route, handler: Handler(handlerFunc: (context, args) => ChangeNotifierProvider( create: (context) {...

enhancement

proxy provider is not updating the values following is my main.dart where I am following the exact docs ``` ProxyProvider( update: (_, auth, __) => ApiCalls(auth.accessToken)), ``` and following is...

bug
question

This PR adds a link to GitHub issues to pub.dev (in the right column right under the repository link).

Can I store and pass widget as a variable in provider mode? Will this be a performance issue?

enhancement
needs triage