mirror of
https://github.com/Iconica-Development/flutter_image_picker.git
synced 2025-05-18 19:53:45 +02:00
11 lines
256 B
Dart
11 lines
256 B
Dart
import 'dart:typed_data';
|
|
import 'package:flutter/cupertino.dart';
|
|
|
|
import 'src/screens/image_picker_ui.dart';
|
|
|
|
class ImagePicker {
|
|
Future<Uint8List?> showPickImageDialog(BuildContext context) {
|
|
return ImagePickerUI().pickImageDialog(context);
|
|
}
|
|
}
|