file_local_storage_inspector 0.4.0 copy "file_local_storage_inspector: ^0.4.0" to clipboard
file_local_storage_inspector: ^0.4.0 copied to clipboard

Local storage inspector bindings for file based storage using dart:io

example/example.dart

import 'package:file_local_storage_inspector/file_local_storage_inspector.dart';
import 'package:flutter/material.dart';
import 'package:storage_inspector/storage_inspector.dart';

void main() async {
  WidgetsFlutterBinding.ensureInitialized();

  // ignore: avoid_print
  storageInspectorLogger = (e) => print(e);

  final driver = StorageServerDriver(
    bundleId: 'com.example.test',
    icon: '<some icon>',
  );

  final fileServer = DefaultFileServer(_documentsDirectory(), 'App Documents');
  driver.addFileServer(fileServer);

  // Don't wait for a connection from the instrumentation driver
  await driver.start(paused: false);

  // run app
  await Future<void>.delayed(const Duration(minutes: 15));

  await driver.stop(); //Optional when main ends
}

//Use path_provider to provide this
String _documentsDirectory() {
  return '.';
}
3
likes
140
pub points
72%
popularity

Publisher

verified publisherchimerapps.com

Local storage inspector bindings for file based storage using dart:io

Repository (GitHub)
View/report issues

Documentation

API reference

Funding

Consider supporting this project:

github.com
ko-fi.com

License

MIT (LICENSE)

Dependencies

flutter, path, storage_inspector, uuid

More

Packages that depend on file_local_storage_inspector