|
|
|
|
@ -83,10 +83,20 @@ class _AppDrawerState extends State<AppDrawer> {
|
|
|
|
|
children: [
|
|
|
|
|
authProvider.doctorProfile != null
|
|
|
|
|
? CircleAvatar(
|
|
|
|
|
radius: SizeConfig.imageSizeMultiplier * 12,
|
|
|
|
|
backgroundImage: NetworkImage(
|
|
|
|
|
authProvider.doctorProfile.doctorImageURL),
|
|
|
|
|
backgroundColor: Colors.white,
|
|
|
|
|
radius:
|
|
|
|
|
SizeConfig.imageSizeMultiplier * 12,
|
|
|
|
|
// radius: (52)
|
|
|
|
|
child: ClipRRect(
|
|
|
|
|
borderRadius:BorderRadius.circular(50),
|
|
|
|
|
|
|
|
|
|
child: Image.network(
|
|
|
|
|
authProvider
|
|
|
|
|
.doctorProfile.doctorImageURL,
|
|
|
|
|
fit: BoxFit.fill,
|
|
|
|
|
width: 700,
|
|
|
|
|
),
|
|
|
|
|
),
|
|
|
|
|
backgroundColor: Colors.transparent,
|
|
|
|
|
)
|
|
|
|
|
: SizedBox(),
|
|
|
|
|
authProvider.doctorProfile != null
|
|
|
|
|
|