Skip to content

Instantly share code, notes, and snippets.

@epietrowicz
Last active May 1, 2020 14:15
Show Gist options
  • Save epietrowicz/33880939e75a82203244adbab520f75d to your computer and use it in GitHub Desktop.
Save epietrowicz/33880939e75a82203244adbab520f75d to your computer and use it in GitHub Desktop.
picture function
void _choose() async {
File file;
file = await ImagePicker.pickImage(
source: ImageSource.camera,
);
if (file != null) {
haveImg = true;
futureImg = _upload(file);
setState(() {});
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment