如何在颤动中删除拾取的图像?
How to remove picked image in flutter?
我正在使用下面的代码在 flutter 应用程序中选择图像,它运行良好。
如果万一我不想上传图片而想删除选择的图片,我该怎么办?
Future getImage() async {
print("get image");
PickedFile image = await _picker.getImage(source: ImageSource.gallery);
if (image != null) {
setState(() {
final File file = File(image.path);
avatarImageFile = file;
isLoading1 = true;
});
}
}
显示图像的代码
Stack(
children: <Widget>[
(avatarImageFile == null)
? (photoUrl != ''
? Material(
child: Image(image: AssetImage('assets/user.jpg'),
width: 100,
height: 100,
fit: BoxFit.cover,
),
clipBehavior:Clip.hardEdge ,
borderRadius: BorderRadius.all(Radius.circular(25.0)),
)
: Icon(
Icons.account_circle,
size: 90.0,
color: Colors.grey,
))
: Material(
child: Image.file(
avatarImageFile,
width: 90.0,
height: 90.0,
fit: BoxFit.cover,
),
borderRadius: BorderRadius.all(Radius.circular(25.0)),
clipBehavior: Clip.hardEdge,
),
IconButton(
icon: Icon(
Icons.camera,
color: Colors.orange.withOpacity(0.5),
),
onPressed: getImage,
padding: EdgeInsets.all(30.0),
splashColor: Colors.transparent,
highlightColor: Colors.grey,
iconSize: 30.0,
),
],
),
现在我正在挑选图片并试图删除挑选的图片,我的意思是它应该是空的,上传图片在上下文的后期
您可以像这样在 IconButton 中使用 setState 再次将其设置为空:
IconButton(
icon: Icon(Icons.clear),
onPressed: () {
setState(() {
avatarImageFile = null;
});
},
),
当您点击图像时,图像选择器会重新打开并覆盖其他图像
Inkwell(
onTap: (){
getImage()}
Image.file(
avatarImageFile,
width: 90.0,
height: 90.0,
fit: BoxFit.cover,
),
我正在使用下面的代码在 flutter 应用程序中选择图像,它运行良好。 如果万一我不想上传图片而想删除选择的图片,我该怎么办?
Future getImage() async {
print("get image");
PickedFile image = await _picker.getImage(source: ImageSource.gallery);
if (image != null) {
setState(() {
final File file = File(image.path);
avatarImageFile = file;
isLoading1 = true;
});
}
}
显示图像的代码
Stack(
children: <Widget>[
(avatarImageFile == null)
? (photoUrl != ''
? Material(
child: Image(image: AssetImage('assets/user.jpg'),
width: 100,
height: 100,
fit: BoxFit.cover,
),
clipBehavior:Clip.hardEdge ,
borderRadius: BorderRadius.all(Radius.circular(25.0)),
)
: Icon(
Icons.account_circle,
size: 90.0,
color: Colors.grey,
))
: Material(
child: Image.file(
avatarImageFile,
width: 90.0,
height: 90.0,
fit: BoxFit.cover,
),
borderRadius: BorderRadius.all(Radius.circular(25.0)),
clipBehavior: Clip.hardEdge,
),
IconButton(
icon: Icon(
Icons.camera,
color: Colors.orange.withOpacity(0.5),
),
onPressed: getImage,
padding: EdgeInsets.all(30.0),
splashColor: Colors.transparent,
highlightColor: Colors.grey,
iconSize: 30.0,
),
],
),
现在我正在挑选图片并试图删除挑选的图片,我的意思是它应该是空的,上传图片在上下文的后期
您可以像这样在 IconButton 中使用 setState 再次将其设置为空:
IconButton(
icon: Icon(Icons.clear),
onPressed: () {
setState(() {
avatarImageFile = null;
});
},
),
当您点击图像时,图像选择器会重新打开并覆盖其他图像
Inkwell(
onTap: (){
getImage()}
Image.file(
avatarImageFile,
width: 90.0,
height: 90.0,
fit: BoxFit.cover,
),