370 lines
12 KiB
Dart
370 lines
12 KiB
Dart
/*
|
|
install plugin in pubspec.yaml
|
|
- image_picker => to pick image from storage or camera (https://pub.dev/packages/image_picker)
|
|
add this to ios Info.plist
|
|
<key>NSPhotoLibraryUsageDescription</key>
|
|
<string>I need this permission to test upload photo</string>
|
|
<key>NSCameraUsageDescription</key>
|
|
<string>I need this permission to test upload photo</string>
|
|
<key>NSMicrophoneUsageDescription</key>
|
|
<string>I need this permission to test upload photo</string>
|
|
|
|
When using package image_picker: ^0.8.0+4, we should add this permission at AndroidManifest
|
|
android/app/src/debug/AndroidManifest.xml | android/app/src/main/AndroidManifest.xml | android/app/src/profile/AndroidManifest.xml
|
|
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE"/>
|
|
|
|
- permission_handler => to handle permission such as storage, camera (https://pub.dev/packages/permission_handler)
|
|
From above link, you should add this to the podfile if you are running on iOS:
|
|
post_install do |installer|
|
|
installer.pods_project.targets.each do |target|
|
|
target.build_configurations.each do |config|
|
|
flutter_additional_ios_build_settings(target)
|
|
|
|
# You can enable the permissions needed here. For example to enable camera
|
|
# permission, just remove the `#` character in front so it looks like this:
|
|
#
|
|
# ## dart: PermissionGroup.camera
|
|
# 'PERMISSION_CAMERA=1'
|
|
#
|
|
# Preprocessor definitions can be found in: https://github.com/Baseflow/flutter-permission-handler/blob/master/permission_handler/ios/Classes/PermissionHandlerEnums.h
|
|
config.build_settings['GCC_PREPROCESSOR_DEFINITIONS'] ||= [
|
|
'$(inherited)',
|
|
|
|
## dart: PermissionGroup.calendar
|
|
# 'PERMISSION_EVENTS=1',
|
|
|
|
## dart: PermissionGroup.reminders
|
|
# 'PERMISSION_REMINDERS=1',
|
|
|
|
## dart: PermissionGroup.contacts
|
|
# 'PERMISSION_CONTACTS=1',
|
|
|
|
## dart: PermissionGroup.camera
|
|
'PERMISSION_CAMERA=1',
|
|
|
|
## dart: PermissionGroup.microphone
|
|
# 'PERMISSION_MICROPHONE=1',
|
|
|
|
## dart: PermissionGroup.speech
|
|
# 'PERMISSION_SPEECH_RECOGNIZER=1',
|
|
|
|
## dart: PermissionGroup.photos
|
|
'PERMISSION_PHOTOS=1',
|
|
|
|
## dart: [PermissionGroup.location, PermissionGroup.locationAlways, PermissionGroup.locationWhenInUse]
|
|
# 'PERMISSION_LOCATION=1',
|
|
|
|
## dart: PermissionGroup.notification
|
|
# 'PERMISSION_NOTIFICATIONS=1',
|
|
|
|
## dart: PermissionGroup.mediaLibrary
|
|
# 'PERMISSION_MEDIA_LIBRARY=1',
|
|
|
|
## dart: PermissionGroup.sensors
|
|
# 'PERMISSION_SENSORS=1',
|
|
|
|
## dart: PermissionGroup.bluetooth
|
|
# 'PERMISSION_BLUETOOTH=1',
|
|
|
|
## dart: PermissionGroup.appTrackingTransparency
|
|
# 'PERMISSION_APP_TRACKING_TRANSPARENCY=1',
|
|
|
|
## dart: PermissionGroup.criticalAlerts
|
|
# 'PERMISSION_CRITICAL_ALERTS=1'
|
|
]
|
|
|
|
end
|
|
end
|
|
end
|
|
|
|
we add some logic function so if the user press back or done with this pages, cache images will be deleted and not makes the storage full
|
|
|
|
Don't forget to add all images and sound used in this pages at the pubspec.yaml
|
|
|
|
*** IMPORTANT NOTES FOR IOS ***
|
|
Image Picker will crash if you pick image for a second times, this error only exist on iOS Simulator 14 globaly around the world but not error on the real device
|
|
If you want to use iOS Simulator, you need to downgrade and using iOS Simulator 13
|
|
Follow this step to downgrade :
|
|
1. Xcode > Preferences
|
|
2. Select the "Components" tab.
|
|
3. Download and select Simulator 13 after the download is finish
|
|
4. Press "Check and Install Now".
|
|
5. After that, use Simulator 13 instead of simulator 14
|
|
*/
|
|
|
|
import 'dart:io';
|
|
import 'package:flutter/foundation.dart';
|
|
import 'package:universal_io/io.dart' as IO;
|
|
|
|
import 'package:mobdr/ui/reusable/global_widget.dart';
|
|
import 'package:flutter/material.dart';
|
|
import 'package:fluttertoast/fluttertoast.dart';
|
|
import 'package:permission_handler/permission_handler.dart';
|
|
|
|
import 'package:image_picker/image_picker.dart';
|
|
import 'package:image_picker_android/image_picker_android.dart';
|
|
import 'package:image_picker_platform_interface/image_picker_platform_interface.dart';
|
|
|
|
class PhotoPickPage extends StatefulWidget {
|
|
@override
|
|
_PhotoPickPageState createState() => _PhotoPickPageState();
|
|
}
|
|
|
|
class _PhotoPickPageState extends State<PhotoPickPage> {
|
|
// initialize global widget
|
|
final _globalWidget = GlobalWidget();
|
|
|
|
Color _color1 = Color(0xFF0181cc);
|
|
Color _color2 = Color(0xff777777);
|
|
|
|
File? _image;
|
|
final _picker = ImagePicker();
|
|
|
|
dynamic _selectedFile;
|
|
|
|
@override
|
|
void initState() {
|
|
super.initState();
|
|
}
|
|
|
|
@override
|
|
void dispose() {
|
|
if (!kIsWeb) {
|
|
if (_selectedFile != null && _selectedFile!.existsSync()) {
|
|
_selectedFile!.deleteSync();
|
|
}
|
|
}
|
|
_selectedFile = null;
|
|
super.dispose();
|
|
}
|
|
|
|
Future requestPermission(Permission permission) async {
|
|
final result = await permission.request();
|
|
return result;
|
|
}
|
|
|
|
void _askPermissionCamera() {
|
|
requestPermission(Permission.camera).then(_onStatusRequestedCamera);
|
|
}
|
|
|
|
void _askPermissionStorage() {
|
|
requestPermission(Permission.storage).then(_onStatusRequested);
|
|
}
|
|
|
|
void _askPermissionPhotos() {
|
|
requestPermission(Permission.photos).then(_onStatusRequested);
|
|
}
|
|
|
|
void _onStatusRequested(status) {
|
|
if (status != PermissionStatus.granted) {
|
|
if (IO.Platform.isIOS) {
|
|
openAppSettings();
|
|
} else {
|
|
if (status == PermissionStatus.permanentlyDenied) {
|
|
openAppSettings();
|
|
}
|
|
}
|
|
} else {
|
|
_getImage(ImageSource.gallery);
|
|
}
|
|
}
|
|
|
|
void _onStatusRequestedCamera(status) {
|
|
if (status != PermissionStatus.granted) {
|
|
if (IO.Platform.isIOS) {
|
|
openAppSettings();
|
|
} else {
|
|
if (status == PermissionStatus.permanentlyDenied) {
|
|
openAppSettings();
|
|
}
|
|
}
|
|
} else {
|
|
_getImage(ImageSource.camera);
|
|
}
|
|
}
|
|
|
|
void _getImage(ImageSource source) async {
|
|
final ImagePickerPlatform imagePickerImplementation =
|
|
ImagePickerPlatform.instance;
|
|
if (imagePickerImplementation is ImagePickerAndroid) {
|
|
imagePickerImplementation.useAndroidPhotoPicker = true;
|
|
}
|
|
final pickedFile = await _picker.pickImage(
|
|
source: source, maxWidth: 640, imageQuality: 100);
|
|
setState(() {
|
|
if (pickedFile != null) {
|
|
_image = File(pickedFile.path);
|
|
}
|
|
});
|
|
|
|
if (_image != null) {
|
|
this.setState(() {
|
|
if (!kIsWeb) {
|
|
if (_selectedFile != null && _selectedFile!.existsSync()) {
|
|
_selectedFile!.deleteSync();
|
|
}
|
|
}
|
|
if (kIsWeb) {
|
|
_selectedFile = pickedFile;
|
|
} else {
|
|
_selectedFile = _image;
|
|
}
|
|
|
|
_image = null;
|
|
});
|
|
}
|
|
}
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: Colors.white,
|
|
appBar: _globalWidget.globalAppBar(),
|
|
body: Stack(
|
|
children: <Widget>[
|
|
SingleChildScrollView(
|
|
padding: EdgeInsets.all(20),
|
|
child: Column(
|
|
children: <Widget>[
|
|
_getImageWidget(),
|
|
SizedBox(height: 30),
|
|
Row(
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
children: <Widget>[
|
|
(!kIsWeb)
|
|
? GestureDetector(
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
Icon(
|
|
Icons.camera_alt,
|
|
color: _color2,
|
|
size: 40,
|
|
),
|
|
SizedBox(width: 10),
|
|
Text('Camera'),
|
|
],
|
|
),
|
|
onTap: () {
|
|
_askPermissionCamera();
|
|
},
|
|
)
|
|
: SizedBox.shrink(),
|
|
Container(
|
|
width: (!kIsWeb) ? 20 : 0,
|
|
),
|
|
GestureDetector(
|
|
child: Row(
|
|
mainAxisSize: MainAxisSize.min,
|
|
children: <Widget>[
|
|
Icon(
|
|
Icons.photo,
|
|
color: _color2,
|
|
size: 40,
|
|
),
|
|
SizedBox(width: 10),
|
|
Text('Gallery'),
|
|
],
|
|
),
|
|
onTap: () {
|
|
if (kIsWeb) {
|
|
_getImage(ImageSource.gallery);
|
|
} else {
|
|
if (IO.Platform.isIOS) {
|
|
_askPermissionPhotos();
|
|
} else {
|
|
_askPermissionStorage();
|
|
}
|
|
}
|
|
},
|
|
),
|
|
],
|
|
),
|
|
_buttonSave()
|
|
],
|
|
),
|
|
)
|
|
],
|
|
));
|
|
}
|
|
|
|
Widget _getImageWidget() {
|
|
if (_selectedFile != null) {
|
|
return (kIsWeb)
|
|
? Image.network(
|
|
_selectedFile!.path,
|
|
width: (kIsWeb) ? 640 : MediaQuery.of(context).size.width - 16,
|
|
fit: BoxFit.fill,
|
|
)
|
|
: Image.file(
|
|
_selectedFile!,
|
|
width: (kIsWeb) ? 640 : MediaQuery.of(context).size.width - 16,
|
|
fit: BoxFit.fill,
|
|
);
|
|
} else {
|
|
return Image.asset(
|
|
'assets/images/placeholder.jpg',
|
|
width: (kIsWeb) ? 250 : MediaQuery.of(context).size.width - 16,
|
|
fit: BoxFit.fill,
|
|
);
|
|
}
|
|
}
|
|
|
|
Widget _buttonSave() {
|
|
if (_selectedFile != null) {
|
|
return Container(
|
|
margin: EdgeInsets.fromLTRB(0, 50, 0, 0),
|
|
child: SizedBox(
|
|
child: TextButton(
|
|
style: ButtonStyle(
|
|
backgroundColor: MaterialStateProperty.resolveWith<Color>(
|
|
(Set<MaterialState> states) => _color1,
|
|
),
|
|
overlayColor: MaterialStateProperty.all(Colors.transparent),
|
|
shape: MaterialStateProperty.all(RoundedRectangleBorder(
|
|
borderRadius: BorderRadius.circular(3.0),
|
|
)),
|
|
),
|
|
onPressed: () {
|
|
if (_selectedFile != null) {
|
|
if ((!kIsWeb)) {
|
|
// if run on android or ios, should check the file exist or not
|
|
if (_selectedFile!.existsSync()) {
|
|
Fluttertoast.showToast(
|
|
msg: 'Click save success',
|
|
toastLength: Toast.LENGTH_SHORT);
|
|
}
|
|
} else {
|
|
Fluttertoast.showToast(
|
|
msg: 'Click save success',
|
|
toastLength: Toast.LENGTH_SHORT);
|
|
}
|
|
} else {
|
|
Fluttertoast.showToast(
|
|
backgroundColor: Colors.red,
|
|
textColor: Colors.white,
|
|
msg: 'File not found',
|
|
fontSize: 13,
|
|
toastLength: Toast.LENGTH_SHORT);
|
|
}
|
|
},
|
|
child: Padding(
|
|
padding:
|
|
const EdgeInsets.symmetric(horizontal: 30, vertical: 5),
|
|
child: Text(
|
|
'Save',
|
|
style: TextStyle(
|
|
fontSize: 16,
|
|
fontWeight: FontWeight.bold,
|
|
color: Colors.white),
|
|
textAlign: TextAlign.center,
|
|
),
|
|
)),
|
|
),
|
|
);
|
|
} else {
|
|
return Container();
|
|
}
|
|
}
|
|
}
|