mirror of
https://github.com/mdanics/fluttergram.git
synced 2025-08-06 13:19:53 +08:00
Automatically prompt for file selection
This commit is contained in:
@ -19,8 +19,16 @@ class _Uploader extends State<Uploader> {
|
|||||||
TextEditingController descriptionController = new TextEditingController();
|
TextEditingController descriptionController = new TextEditingController();
|
||||||
|
|
||||||
bool uploading = false;
|
bool uploading = false;
|
||||||
|
bool promted = false;
|
||||||
|
|
||||||
|
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
|
|
||||||
|
if (file == null && promted == false){
|
||||||
|
_selectImage();
|
||||||
|
setState(() {promted = true;});
|
||||||
|
}
|
||||||
|
|
||||||
return file == null
|
return file == null
|
||||||
? new IconButton(
|
? new IconButton(
|
||||||
icon: new Icon(Icons.file_upload), onPressed: _selectImage)
|
icon: new Icon(Icons.file_upload), onPressed: _selectImage)
|
||||||
|
Reference in New Issue
Block a user