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.

example/lib/main.dart

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

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Dataview Demo',
      home: MyHomePage(),
      debugShowCheckedModeBanner: false,
    );
  }
}

class MyHomePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: DataviewPage(uploadTo: "http://192.168.1.5:8082/upload"),
    );
  }
}
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