I显示用户配置文件图片,我有3个选项可以显示。第一个是当前拾取的图像,它是从相机或库中拾取的,如果有图像,它将被显示。然后用户可以保护它,这样它也会在用户重新启动应用程序时显示,在这种情况下,我会显示保存的图像。然后是我的第三个选项,如果没有保存图片,也没有选择图片,那么我会显示一个默认的图像,那是在我的资产中。这是我的问题,我该怎么做,因为如果用户删除当前保存的图片,那么如果他改回";没有拍照";则将再次显示默认图片。但是我该如何在代码中实现这一点呢?图片以文件形式保存在存储器中,也以url形式保存在firestore中这是我的Circle头像,用于删除保存图像和保存前选择的图像。
Container(
child: Center(
child:
CircleAvatar(
radius: 70,
foregroundImage: _pickedImage!=null? FileImage(_pickedImage): NetworkImage ( userData.url),
),
),
decoration: new BoxDecoration(
shape: BoxShape.circle,
这是我的方法:
onPressed: () async {
if (_formKey.currentState.validate()) {
final ref= FirebaseStorage.instance.ref().child('user_profile_pictures').child(user.uid+'.jpg');
await ref.putFile(_pickedImage);
final url = await ref.getDownloadURL();
_curenturl= url;
String authError =
await DatbaseService(uid: user.uid).updateUserData(
_currentusername ?? userData.user,
_currentfullname ?? userData.fullname,
_currentemail ?? userData.email,
_currentpassword ?? userData.password,
_curenturl ??userData.url,
);
if (authError != null) {
这是我按下的将当前url设置为null的方法,还有userData.url
onTap: () {
DatbaseService(uid: user.uid).updateUserData(
_currentusername ?? userData.user,
_currentfullname ?? userData.fullname,
_currentemail ?? userData.email,
_currentpassword ?? userData.password,
_curenturl =null,
);
Navigator.pop(context);
},
正如你所看到的,我再次将url设置为null。IM这样做是为了不再保存图片,。然后我想显示我的资产中的默认图像。我试图用那个图片更新我当前的url,但url是一个字符串,我的图片是一个资产图片。
你可以试试我的代码:
ClipRRect(
borderRadius: BorderRadius.circular(60),
child: Container(
height: 100,
width: 100,
decoration: BoxDecoration(
color: Colors.grey.shade300,
),
child: image != null
? Image.file(
image,
fit: BoxFit.cover,
)
: networkImg != null && networkImg != ''
? Image.network(
networkImg,
fit: BoxFit.cover,
)
: Image.asset(
// Your image path is here when image is no available.
),
),
),
请告诉我它是否有效。