|
|
|
@ -1,7 +1,6 @@ |
|
|
|
|
import 'dart:io'; |
|
|
|
|
|
|
|
|
|
import 'package:file_picker/file_picker.dart'; |
|
|
|
|
import 'package:filesystem_picker/filesystem_picker.dart'; |
|
|
|
|
import 'package:flutter/foundation.dart'; |
|
|
|
|
import 'package:flutter/material.dart'; |
|
|
|
|
import 'package:image_picker/image_picker.dart'; |
|
|
|
@ -20,7 +19,7 @@ class ImageButton extends StatelessWidget { |
|
|
|
|
this.fillColor, |
|
|
|
|
this.onImagePickCallback, |
|
|
|
|
this.imagePickImpl, |
|
|
|
|
this.applicationPath, |
|
|
|
|
this.filePickImpl, |
|
|
|
|
Key? key, |
|
|
|
|
}) : super(key: key); |
|
|
|
|
|
|
|
|
@ -37,7 +36,7 @@ class ImageButton extends StatelessWidget { |
|
|
|
|
|
|
|
|
|
final ImageSource imageSource; |
|
|
|
|
|
|
|
|
|
final Future<Directory>? applicationPath; |
|
|
|
|
final FilePickImpl? filePickImpl; |
|
|
|
|
|
|
|
|
|
@override |
|
|
|
|
Widget build(BuildContext context) { |
|
|
|
@ -49,12 +48,12 @@ class ImageButton extends StatelessWidget { |
|
|
|
|
hoverElevation: 0, |
|
|
|
|
size: iconSize * 1.77, |
|
|
|
|
fillColor: fillColor ?? theme.canvasColor, |
|
|
|
|
onPressed: () => _handleImageButtonTap(context, applicationPath), |
|
|
|
|
onPressed: () => _handleImageButtonTap(context, filePickImpl), |
|
|
|
|
); |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Future<void> _handleImageButtonTap(BuildContext context, |
|
|
|
|
[Future<Directory>? applicationPath]) async { |
|
|
|
|
[FilePickImpl? filePickImpl]) async { |
|
|
|
|
final index = controller.selection.baseOffset; |
|
|
|
|
final length = controller.selection.extentOffset - index; |
|
|
|
|
|
|
|
|
@ -67,9 +66,8 @@ class ImageButton extends StatelessWidget { |
|
|
|
|
} else if (Platform.isAndroid || Platform.isIOS) { |
|
|
|
|
imageUrl = await _pickImage(imageSource); |
|
|
|
|
} else { |
|
|
|
|
assert(applicationPath != null, |
|
|
|
|
'Desktop must provide application document directory'); |
|
|
|
|
imageUrl = await _pickImageDesktop(context, applicationPath!); |
|
|
|
|
assert(filePickImpl != null, 'Desktop must provide filePickImpl'); |
|
|
|
|
imageUrl = await _pickImageDesktop(context, filePickImpl!); |
|
|
|
|
} |
|
|
|
|
} |
|
|
|
|
|
|
|
|
@ -101,13 +99,8 @@ class ImageButton extends StatelessWidget { |
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
Future<String?> _pickImageDesktop( |
|
|
|
|
BuildContext context, Future<Directory> applicationPath) async { |
|
|
|
|
final filePath = await FilesystemPicker.open( |
|
|
|
|
context: context, |
|
|
|
|
rootDirectory: await applicationPath, |
|
|
|
|
fsType: FilesystemType.file, |
|
|
|
|
fileTileSelectMode: FileTileSelectMode.wholeTile, |
|
|
|
|
); |
|
|
|
|
BuildContext context, FilePickImpl filePickImpl) async { |
|
|
|
|
final filePath = await filePickImpl(context); |
|
|
|
|
if (filePath == null || filePath.isEmpty) return null; |
|
|
|
|
|
|
|
|
|
final file = File(filePath); |
|
|
|
|