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

outdated

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 Build Status

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
0
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

unknown (LICENSE)

Dependencies

archive, cupertino_icons, dio, err, filesize, flutter, flutter_slidable, fluttertoast, path_provider

More

Packages that depend on dataview