Skip to content

Instantly share code, notes, and snippets.

@nbnD
Created September 11, 2022 06:16
Show Gist options
  • Save nbnD/9f582dc932ada75c6f38940394611191 to your computer and use it in GitHub Desktop.
Save nbnD/9f582dc932ada75c6f38940394611191 to your computer and use it in GitHub Desktop.
Image picker in flutter
Future pickImageFromGallery() async {
XFile? pickedImage = await picker.pickImage(source: ImageSource.gallery);
setState(() {
File? file = File(pickedImage!.path);
List<File?> fileList.add(file);
});
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment