Help me My Network image is not showing image I am getting the URL but in network image or circle avatar its now showing anything from the URL here is code:
Getting URL from Firebase:
String IMGURL = ”;
_firebaseFirestore
.collection(“Users”)
.doc(_auth.currentUser!.uid.toString())
.get()
.then(
(snapshot) {
setState(() {
IMGURL = snapshot.data()![‘PROFILE_IMG’];
encodedURL = Uri.encodeFull(IMGURL);
print(IMGURL);
});
},
);
// UI Showing Image from URL in Circle Avatar but its now showing anything
IMGURL != null
? CircleAvatar(
radius: 18,
backgroundImage: NetworkImage(IMGURL),)
: IconButton(
onPressed: () {
setState(() {
currentPage = 5;
});
},