storages 0.0.3 copy "storages: ^0.0.3" to clipboard
storages: ^0.0.3 copied to clipboard

A wrapper of disk storage allows people to cache files to disk more securely without worrying about taking up disk space unlimitedly.

example/lib/main.dart

import 'dart:io';
import 'dart:typed_data';

import 'package:flutter/material.dart';
import 'dart:async';

import 'package:storages/storages.dart';

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

class MyApp extends StatefulWidget {
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  FixSizedStorage fixSizedStorage;

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

  Future<void> run() async {
    Uint8List bytes = Uint8List(300 * 300 * 4);

    int key = 0;
    bool set = false;
    while (true) {
      fixSizedStorage = FixSizedStorage.fromId('example');
      await fixSizedStorage.init();

      var t1 = DateTime.now().microsecondsSinceEpoch;

      String keyStr = '$key';
      String value = await fixSizedStorage.get(keyStr);
      if (value == null) {
        String path = await fixSizedStorage.touch(keyStr);
        await File(path).writeAsBytes(bytes);
        set = await fixSizedStorage.set(keyStr, path);
      }

      ++key;

      var t2 = DateTime.now().microsecondsSinceEpoch;
      print('value ... $value, set ... $set, ${(t2 - t1) / 1000} ms');
    }
  }

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
      ),
    );
  }
}
1
likes
40
pub points
0%
popularity

Publisher

unverified uploader

A wrapper of disk storage allows people to cache files to disk more securely without worrying about taking up disk space unlimitedly.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

flutter, path_provider

More

Packages that depend on storages