fix issues

fix_login
Mohammad Aljmma 4 years ago
parent 894494ec4e
commit 0b90d3c687

@ -235,7 +235,7 @@ class _DocAvailableAppointmentsState extends State<DocAvailableAppointments>
return children; return children;
}, },
), ),
onDaySelected: (date, events) { onDaySelected: (date, events,format) {
_onDaySelected(date, events); _onDaySelected(date, events);
_animationController.forward(from: 0.0); _animationController.forward(from: 0.0);
}, },

@ -348,7 +348,7 @@ class _CovidTimeSlotsState extends State<CovidTimeSlots>
return children; return children;
}, },
), ),
onDaySelected: (date, event) { onDaySelected: (date, event,format) {
_onDaySelected(date, event,); _onDaySelected(date, event,);
_animationController.forward(from: 0.0); _animationController.forward(from: 0.0);
}, },

@ -22,7 +22,7 @@ class MedicalProfileItem extends StatelessWidget {
showBorder: true, showBorder: true,
borderWidth: 0, borderWidth: 0,
margin: 4, margin: 4,
height: MediaQuery.of(context).size.height * 0.12, height:120,// MediaQuery.of(context).size.height * 0.12,
child: Container( child: Container(
//width: MediaQuery.of(context).size.width * 0.25, //width: MediaQuery.of(context).size.width * 0.25,
// width: MediaQuery.of(context).size.width* 0.40, // width: MediaQuery.of(context).size.width* 0.40,

@ -70,7 +70,7 @@ class AppScaffold extends StatelessWidget {
), ),
title: Texts(authenticatedUserObject.isLogin || !isShowDecPage title: Texts(authenticatedUserObject.isLogin || !isShowDecPage
? appBarTitle.toUpperCase() ? appBarTitle.toUpperCase()
: TranslationBase.of(context).serviceInformationTitle), : TranslationBase.of(context).serviceInformationTitle,color: Colors.white,),
leading: Builder( leading: Builder(
builder: (BuildContext context) { builder: (BuildContext context) {
return ArrowBack(); return ArrowBack();

Loading…
Cancel
Save