mirror of https://github.com/CympleTech/ESSE.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
788 B
25 lines
788 B
import 'dart:io' show Platform; |
|
|
|
import 'package:image_picker/image_picker.dart'; |
|
import 'package:file_selector_platform_interface/file_selector_platform_interface.dart'; |
|
|
|
Future<String?> pickImage() async { |
|
if (Platform.isLinux || Platform.isMacOS || Platform.isWindows) { |
|
final XTypeGroup typeGroup = XTypeGroup( |
|
label: 'images', |
|
extensions: ['jpg', 'png'], |
|
); |
|
final List<XFile>? files = await FileSelectorPlatform.instance.openFiles(acceptedTypeGroups: [typeGroup]); |
|
if (files != null && files.length > 0) { |
|
final XFile file = files[0]; |
|
return file.path; |
|
} |
|
} else { |
|
final pickedFile = await ImagePicker().pickImage(source: ImageSource.gallery); |
|
if (pickedFile != null) { |
|
return pickedFile.path; |
|
} |
|
} |
|
|
|
return null; |
|
}
|
|
|