flutter image picker 无法正常工作并且在调试时没有错误地使应用程序崩溃
flutter image picker not working and crashing app without error on debug
我目前使用的是这些版本:
颤动:2.16.0
image_picker : ^0.8.4+7
图像选择器不工作。 运行 应用程序后,当我点击按钮激活pickImage
功能时, 运行 突然停止,应用程序崩溃并停止。在调试时,我得到的唯一消息是:
Lost connection to device.
代码如下:
import 'dart:io';
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:hipocampus_editors/widgets/textformfield_widget.dart';
import 'package:image_picker/image_picker.dart';
class AddSystemPage extends StatefulWidget {
const AddSystemPage({Key? key}) : super(key: key);
@override
_AddSystemPageState createState() => _AddSystemPageState();
}
class _AddSystemPageState extends State<AddSystemPage> {
final _formKey = GlobalKey<FormState>();
File? image1;
Future pickImage() async{
final image = await ImagePicker().pickImage(source: ImageSource.gallery);
if (image == null) return;
final imageTemporary = File(image.path);
setState(() {
image1 = imageTemporary;
});
}
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () => FocusManager.instance.primaryFocus?.unfocus(),
child: Scaffold(
appBar: AppBar(title: const Text('System',),),
body: SafeArea(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 5),
child: Form(
key: _formKey,
child: Container(
width: MediaQuery.of(context).size.width,
padding: const EdgeInsets.symmetric(horizontal: 10),
child: SingleChildScrollView(
child: Column(
children: [
ElevatedButton(onPressed: (){
pickImage();
}, child: Text('Select image'))
],
)),
),
),
),
),
),
);
}
}
将此添加到 iOS>亚军>Info.plist
<key>NSPhotoLibraryUsageDescription</key>
<string>Allow access to photo library</string>
请检查您是否正确注册了ImagePicker。
如果您已经正确注册了 ImagePicker,那么在 pick Image 函数中放一个 try and catch blog 以获得更多调试信息:
Future pickImage() async{
try{
final image = await ImagePicker().pickImage(source: ImageSource.gallery);
if (image == null) return;
final imageTemporary = File(image.path);
setState(() {
image1 = imageTemporary;
});
} catch(error) {
print("error: $error");
}
}
这发生在我尝试使用 iOS 模拟器时。您需要在 /ios/Runner/Info.plist:
中添加这些键
NSPhotoLibraryUsageDescription NSCameraUsageDescription
同时尝试在物理设备上测试您的应用。如果您使用 Android 版本,则无需更改配置,您可以参考此视频:https://youtu.be/s0YqbEJcRtE
我目前使用的是这些版本: 颤动:2.16.0 image_picker : ^0.8.4+7
图像选择器不工作。 运行 应用程序后,当我点击按钮激活pickImage
功能时, 运行 突然停止,应用程序崩溃并停止。在调试时,我得到的唯一消息是:
Lost connection to device.
代码如下:
import 'dart:io';
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:cloud_firestore/cloud_firestore.dart';
import 'package:hipocampus_editors/widgets/textformfield_widget.dart';
import 'package:image_picker/image_picker.dart';
class AddSystemPage extends StatefulWidget {
const AddSystemPage({Key? key}) : super(key: key);
@override
_AddSystemPageState createState() => _AddSystemPageState();
}
class _AddSystemPageState extends State<AddSystemPage> {
final _formKey = GlobalKey<FormState>();
File? image1;
Future pickImage() async{
final image = await ImagePicker().pickImage(source: ImageSource.gallery);
if (image == null) return;
final imageTemporary = File(image.path);
setState(() {
image1 = imageTemporary;
});
}
@override
Widget build(BuildContext context) {
return GestureDetector(
onTap: () => FocusManager.instance.primaryFocus?.unfocus(),
child: Scaffold(
appBar: AppBar(title: const Text('System',),),
body: SafeArea(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 5),
child: Form(
key: _formKey,
child: Container(
width: MediaQuery.of(context).size.width,
padding: const EdgeInsets.symmetric(horizontal: 10),
child: SingleChildScrollView(
child: Column(
children: [
ElevatedButton(onPressed: (){
pickImage();
}, child: Text('Select image'))
],
)),
),
),
),
),
),
);
}
}
将此添加到 iOS>亚军>Info.plist
<key>NSPhotoLibraryUsageDescription</key>
<string>Allow access to photo library</string>
请检查您是否正确注册了ImagePicker。
如果您已经正确注册了 ImagePicker,那么在 pick Image 函数中放一个 try and catch blog 以获得更多调试信息:
Future pickImage() async{
try{
final image = await ImagePicker().pickImage(source: ImageSource.gallery);
if (image == null) return;
final imageTemporary = File(image.path);
setState(() {
image1 = imageTemporary;
});
} catch(error) {
print("error: $error");
}
}
这发生在我尝试使用 iOS 模拟器时。您需要在 /ios/Runner/Info.plist:
中添加这些键NSPhotoLibraryUsageDescription NSCameraUsageDescription
同时尝试在物理设备上测试您的应用。如果您使用 Android 版本,则无需更改配置,您可以参考此视频:https://youtu.be/s0YqbEJcRtE