skip to Main Content

How to save the photos taken with image_picker in flutter to the phone

I'm confused I've taken a picture but can't save it to the phone.How should I save pictures to the phone? I used the following code to take a picture. ValueNotifier<XFile?>_imageFile=ValueNotifier(null); ImagePicker _imagePicker=ImagePicker(); Future<void> _getImage(ImageSource imageSource) async{ XFile? imgFile=await _imagePicker.pickImage(source: imageSource);…

VIEW QUESTION

Flutter Rows and columns

I am a flutter beginner. How to create elements like 4*2 tabular columns without borders? I tried, But I didn't get the alignment I wanted. Like This can someone guide me on how I can solve this problem? Here is…

VIEW QUESTION
Back To Top
Search