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

Explore the application's documents directory. A quick way to look at an application's data directory content for debug purposes. Can also upload files and directories to a server.

Dataview #

pub package

A file explorer for the application's documents directory. Can upload files and directories to a server.

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"))

Upload files and directories #

Specify the uploadTo parameter to be able to upload to a server:

DataviewPage(uploadTo: "http://192.168.1.2:8082/upload")

A default basic development Go server is provided for local usage. A compiled version for Linux is attached to the Github release. To run it:

./devserver_linux64

It will receive the files in the same directory as the running binary

2
likes
40
pub points
0%
popularity

Publisher

unverified uploader

Explore the application's documents directory. A quick way to look at an application's data directory content for debug purposes. Can also upload files and directories to a server.

Repository (GitHub)
View/report issues

License

MIT (LICENSE)

Dependencies

archive, body_parser, dio, err, err_router, extra_pedantic, filesize, filex, flutter, flutter_slidable, http, path, path_provider, pedantic

More

Packages that depend on dataview