A simple project handling cache management in a Flutter app. This is using Riverpod, Sembast & GraphQL.
There's tons of things to do, as it's just an export of my repository system. For the moment, explore the package to see what you can do with it :)
In your Material App, simply add
@override
void initState() {
super.initState();
ref.read(configurationProvider).init(
Configuration(
graphqlEndpoint: ...,
basicUsername: ...,
basicPassword: ...,
),
);
}
Work in progress.