Merge branch 'patient_app_services' into 'development'

fix issues on Referral

See merge request Cloud_Solution/doctor_app_flutter!554
merge-requests/555/merge
Mohammad Aljammal 5 years ago
commit b27c236888

@ -246,11 +246,18 @@ class PatientReferralItemWidget extends StatelessWidget {
child: Container( child: Container(
width: 40, width: 40,
height: 40, height: 40,
child: CircleAvatar( child: doctorAvatar !=null?ClipRRect(
radius: 25.0, borderRadius: BorderRadius.circular(20.0),
backgroundImage: NetworkImage(doctorAvatar), child: Image.network(
backgroundColor: Colors.transparent, doctorAvatar,
), height: 25,
width: 30,
errorBuilder: (BuildContext context,
Object exception,
StackTrace stackTrace) {
return Text('No Image');
},
)):Container(),
), ),
), ),
Expanded( Expanded(

Loading…
Cancel
Save