Skip to content

Latest commit

 

History

History
41 lines (32 loc) · 1.16 KB

README.md

File metadata and controls

41 lines (32 loc) · 1.16 KB

A simple project handling cache management in a Flutter app. This is using Riverpod, Sembast & GraphQL.

Features

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 :)

Getting started

In your Material App, simply add

 @override
 void initState() {
    super.initState();
    ref.read(configurationProvider).init(
        Configuration(
            graphqlEndpoint: ...,
            basicUsername: ...,
            basicPassword: ...,
        ),
    );
 }

Additional information

Work in progress.