v2.0.0christian_picker_image
用於從 Android 和 iOS 圖像庫中選擇圖片,以及使用相機拍攝新照片的 Flutter 插件。
適用於 Flutter 的影像與相機選擇外掛
{"sdk":"flutter"}{"sdk":"flutter"}以下為英文專案原文快照,最新內容請造訪 GitHub。
Flutter plugin that allows you to upload multi image picker on iOS & Android.
ChristianImagePicker is an all-in-one camera solution for your iOS app. It lets your users select images from the library and take pictures at the same time. As a developer you get notified of all the user interactions and get the beautiful UI for free, out of the box, it's just that simple.
ImagePicker has been optimized to give a great user experience, it passes around referenced images instead of the image itself which makes it less memory consuming. This is what makes it smooth as butter.
Demo
Add the following keys to your Info.plist file, located in <project root>/ios/Runner/Info.plist:
NSPhotoLibraryUsageDescription - describe why your app needs permission for the photo library. This is called Privacy - Photo Library Usage Description in the visual editor.NSCameraUsageDescription - describe why your app needs access to the camera. This is called Privacy - Camera Usage Description in the visual editor. visual editor.import 'package:christian_picker_image/christian_picker_image.dart';
class MyHomePage extends StatefulWidget {
@override
_MyHomePageState createState() => _MyHomePageState();
}
class _MyHomePageState extends State<MyHomePage> {
void takeImage(BuildContext context) async {
List<File> images = await ChristianPickerImage.pickImages(maxImages: 5);
print(images);
Navigator.of(context).pop();
}
Future _pickImage(BuildContext context) async {
showDialog<Null>(
context: context,
barrierDismissible: false,
builder: (BuildContext context) {
takeImage(context);
return Center();
});
}
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Text("Christian Picker Image Demo"),
floatingActionButton: Column(
mainAxisAlignment: MainAxisAlignment.end,
children: <Widget>[
Padding(
padding: const EdgeInsets.only(top: 16.0),
child: FloatingActionButton(
onPressed: () {
_pickImage(context);
},
tooltip: 'Take a Photo',
child: const Icon(Icons.photo_library),
),
),
],
)
),
);
}
}