profile image

This commit is contained in:
jayesh
2024-04-29 15:35:31 +05:30
parent b25e561039
commit 2a7bef1281

View File

@@ -120,8 +120,9 @@ class _SideMenuState extends State<SideMenu> {
height: 80.h,
decoration: ShapeDecoration(
image: DecorationImage(
image: NetworkImage(
ProfileObj!.data!.profilePhoto ?? ""),
image: NetworkImage(ProfileObj!.data == null
? ""
: ProfileObj!.data!.profilePhoto ?? ""),
fit: BoxFit.fill,
),
shape: OvalBorder(),