document_chooser

Creator: coderz1093

Last updated:

0 purchases

document_chooser Image
document_chooser Images

Languages

Categories

Add to Cart

Description:

document chooser

document chooser plugin for flutter #
A Flutter chooser to allow users to pick documenet files avaialble on their device.
iOS implentation is based off this plugin;
Note: only chooseDocument is working chooseDocuments is currently broken on both platforms
Installation #
First add document_chooser as a dependency in your pubspec.yaml file.
Permsionss #
No configuration required - the plugin should work out of the box.
Example #
import 'package:flutter/material.dart';
import 'package:document_chooser/document_chooser.dart';

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

class MyApp extends StatefulWidget {
@override
_MyAppState createState() => new _MyAppState();
}

class _MyAppState extends State<MyApp> {

List<String> _documents = [];

@override
void initState() {
super.initState();
}


@override
Widget build(BuildContext context) {
return new MaterialApp(
home: new Scaffold(
appBar: new AppBar(
title: const Text('Plugin example app'),
),
body: new Column(
children: [
getButton("Pick document", ()=>pickDocument()),
getButton("Pick documents", ()=>pickDocuments()),
Expanded(
child: ListView(children: getDocuments(),),
)
],
),
),
);
}

Widget getButton(String text, Function action){
return RaisedButton(
onPressed: action,
child: Text(text),
);
}

pickDocument() async {
String path = await DocumentChooser.chooseDocument();
setState(()=>_documents = [path]);
}

pickDocuments() async {
List<String> paths = await DocumentChooser.chooseDocuments();
setState(()=>_documents = paths);
}

getDocuments() {
return List.generate(_documents.length, (i) => Text(_documents[i]));
}

}
copied to clipboard

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files In This Product:

Customer Reviews

There are no reviews.