riverpod_cache_time 0.0.1 copy "riverpod_cache_time: ^0.0.1" to clipboard
riverpod_cache_time: ^0.0.1 copied to clipboard

outdated

Provides a function that allows you to use cache time when using the RiverPod state management library.

example/lib/main.dart

import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatefulWidget {
  const MyApp({super.key});

  @override
  State<MyApp> createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  // String _platformVersion = 'Unknown';

  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Center(
          child: Text('Running on: \n'),
        ),
      ),
    );
  }
}
0
likes
0
points
3
downloads

Publisher

unverified uploader

Weekly Downloads

Provides a function that allows you to use cache time when using the RiverPod state management library.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

dio, flutter, flutter_riverpod, plugin_platform_interface

More

Packages that depend on riverpod_cache_time

Packages that implement riverpod_cache_time