remote_data_provider 1.0.0 copy "remote_data_provider: ^1.0.0" to clipboard
remote_data_provider: ^1.0.0 copied to clipboard

Help implementing providers easier with predefined abstract classes, special is for working with remote data.

Remote Data Provider #

Test DryRun Publish PubVersion Issues

Help implementing providers easier with predefined abstract classes, special is for working with remote data.

Usage #

Single Data Object #

Step 1. Define your provider

import 'package:remote_data_provider/basic_data_provider.dart';

class ExampleProvider extends BasicDataProvider<ExampleType> {
  @override
  Future<ExampleType> onFetch() async {

    ExampleType result = await // Future<ExampleType> fetch data

    return result;
  }

  @override
  Future<ExampleType> onUpdate(ExampleType newData) async {

    ExampleType result = await // Future<ExampleType> update newData;

    return result;
  }
}

Step 2. In the parent widget

ChangeNotifierProvider(
  create: (context) => ExampleProvider(),
  child: YourChildWidget()
)

Step 3. In the build function of the child widget

final example = Provider.of<ExampleProvider>(context);

bool isLoading = example.isLoading;
bool isError = example.error;
bool isEmpty = example.isEmpty;

ExampleType data = example.data;

Future<void> refresh = example.refresh;
Future<void> update = example.update;

A List of Data Object #

Step 1. Define your provider

import 'package:remote_data_provider/data_list_provider.dart';

class ExampleListProvider extends DataListProvider<ExampleType> {
  @override
  Future<List<ExampleType>> onFetch() async {
    
    List<ExampleType> result = await // Future<List<ExampleType>> fetch data
    
    return result;
  }

  @override
  Future<ExampleType> onAdd(ExampleType newItem) async {
    
    ExampleType result = await // Future<ExampleType> save new item to your databases or APIs
    
    return result;
  }

  @override
  Future<int> onRemove(int index) async {
    ExampleType item = data[index];

    await // remove the item;
    
    return index;
  }
}

Step 2. In the parent widget

ChangeNotifierProvider(
  create: (context) => ExampleListProvider(),
  child: YourChildWidget()
)

Step 3. In the build function of the child widget

final exampleList = Provider.of<ExampleListProvider>(context);

bool isLoading = exampleList.isLoading;
bool isError = exampleList.error;
bool isEmpty = exampleList.isEmpty;
bool isAdding = exampleList.isAdding;
bool isRemoving = exampleList.isRemoving;

List<ExampleType> data = exampleList.data;

Future<void> refresh = exampleList.refresh;
Future<void> add = exampleList.add;
Future<void> removeAt = exampleList.removeAt;

Extended HTTP - fetch data from your API with caching and timeout options #

All methods from BaseClient is inherited, including get, post, put, patch and more. See at BaseClient APIs

import 'package:remote_data_provider/extended_http.dart';

// Call config at the App init to apply for all following requests, skip to use default config.
ExtendedHttp().config(
  timeout: Duration, // default `Duration(seconds: 60)`
  networkFirst: bool, // default `true`
  headers: Map<String,String>, // default `null`
);

Dependencies #

http

flutter_cache_manager

References #

provider

Feel free to leave an issue if you need help or see something wrong in this package. #

10
likes
0
pub points
16%
popularity

Publisher

verified publisherbesoft.vn

Help implementing providers easier with predefined abstract classes, special is for working with remote data.

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

flutter, flutter_cache_manager, http

More

Packages that depend on remote_data_provider