eyf_cache 0.0.7 copy "eyf_cache: ^0.0.7" to clipboard
eyf_cache: ^0.0.7 copied to clipboard

flutter storage

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:eyf_cache_example/home.dart';

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

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

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

class _MyAppState extends State<MyApp> {
  @override
  void initState() {
    super.initState();
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: const Home(),
      ),
    );
  }
}
0
likes
140
points
33
downloads

Publisher

unverified uploader

Weekly Downloads

flutter storage

Repository

Documentation

API reference

License

unknown (license)

Dependencies

eyf_kit, eyf_route, flutter

More

Packages that depend on eyf_cache