43 lines
1.2 KiB
Dart
43 lines
1.2 KiB
Dart
import 'dart:io';
|
|
|
|
import 'package:file_picker/file_picker.dart';
|
|
import 'package:fl_clash/common/common.dart';
|
|
import 'package:image_picker/image_picker.dart';
|
|
|
|
class Picker {
|
|
Future<PlatformFile?> pickerConfigFile() async {
|
|
FilePickerResult? filePickerResult;
|
|
if (Platform.isAndroid) {
|
|
filePickerResult = await FilePicker.platform.pickFiles(
|
|
withData: true,
|
|
type: FileType.custom,
|
|
allowedExtensions: ['txt', 'conf'],
|
|
);
|
|
} else {
|
|
filePickerResult = await FilePicker.platform.pickFiles(
|
|
withData: true,
|
|
type: FileType.custom,
|
|
allowedExtensions: ['yaml', 'txt', 'conf'],
|
|
);
|
|
}
|
|
final file = filePickerResult?.files.first;
|
|
if (file == null) {
|
|
return null;
|
|
}
|
|
return file;
|
|
}
|
|
|
|
Future<String?> pickerConfigQRCode() async {
|
|
final xFile = await ImagePicker().pickImage(source: ImageSource.gallery);
|
|
final bytes = await xFile?.readAsBytes();
|
|
if (bytes == null) return null;
|
|
final result = await other.parseQRCode(bytes);
|
|
if (result == null || !result.isUrl) {
|
|
throw appLocalizations.pleaseUploadValidQrcode;
|
|
}
|
|
return result;
|
|
}
|
|
}
|
|
|
|
final picker = Picker();
|