dataview 0.1.0 copy "dataview: ^0.1.0" to clipboard
dataview: ^0.1.0 copied to clipboard

outdated

Explore the application's documents directory

Dataview #

A file explorer for the application's documents directory.

Screenshot

Usage #

In a router:

import 'package:dataview/dataview.dart';

final routes = {
// ...
'/dataview': (BuildContext context) => new DataviewPage("/"),
};

In a link:

import 'package:dataview/dataview.dart';

// ...
RaisedButton(
 onPressed: () {
  Navigator.of(context).push(MaterialPageRoute(
   builder: (context) {
 return DataviewPage("/");
   },
 ));
},
child: Text("View application data"))
2
likes
0
pub points
0%
popularity

Publisher

unverified uploader

Explore the application's documents directory

Repository (GitHub)
View/report issues

License

unknown (LICENSE)

Dependencies

cupertino_icons, filesize, flutter, flutter_slidable, path_provider

More

Packages that depend on dataview