|
|
|
@ -76,38 +76,37 @@ class _MyVaccinesState extends State<MyVaccines> {
|
|
|
|
bottomSheet: Container(
|
|
|
|
bottomSheet: Container(
|
|
|
|
color: Colors.white,
|
|
|
|
color: Colors.white,
|
|
|
|
padding: EdgeInsets.only(top: 16, bottom: 16, right: 21, left: 21),
|
|
|
|
padding: EdgeInsets.only(top: 16, bottom: 16, right: 21, left: 21),
|
|
|
|
child: Row(
|
|
|
|
child:
|
|
|
|
mainAxisSize: MainAxisSize.min,
|
|
|
|
// Row(
|
|
|
|
children: [
|
|
|
|
// mainAxisSize: MainAxisSize.min,
|
|
|
|
Expanded(
|
|
|
|
// children: [
|
|
|
|
child: DefaultButton(
|
|
|
|
// Expanded(
|
|
|
|
TranslationBase.of(context).availability,
|
|
|
|
// child: DefaultButton(
|
|
|
|
() {
|
|
|
|
// TranslationBase.of(context).availability,
|
|
|
|
// Navigator.push(context, FadePage(page: MyVaccinesItemPage()));
|
|
|
|
// () {
|
|
|
|
},
|
|
|
|
// // Navigator.push(context, FadePage(page: MyVaccinesItemPage()));
|
|
|
|
color: Color(0xffEAEAEA),
|
|
|
|
// },
|
|
|
|
textColor: Color(0xff000000),
|
|
|
|
// color: Color(0xffEAEAEA),
|
|
|
|
),
|
|
|
|
// textColor: Color(0xff000000),
|
|
|
|
),
|
|
|
|
// ),
|
|
|
|
SizedBox(width: 8),
|
|
|
|
// ),
|
|
|
|
Expanded(
|
|
|
|
// SizedBox(width: 8),
|
|
|
|
child: DefaultButton(
|
|
|
|
DefaultButton(
|
|
|
|
TranslationBase.of(context).sendEmail,
|
|
|
|
TranslationBase.of(context).sendEmail,
|
|
|
|
() {
|
|
|
|
() {
|
|
|
|
showDialog(
|
|
|
|
showDialog(
|
|
|
|
context: context,
|
|
|
|
context: context,
|
|
|
|
child: ConfirmSendEmailDialog(
|
|
|
|
child: ConfirmSendEmailDialog(
|
|
|
|
email: projectViewModel.user.emailAddress,
|
|
|
|
email: projectViewModel.user.emailAddress,
|
|
|
|
onTapSendEmail: () {
|
|
|
|
onTapSendEmail: () {
|
|
|
|
model.sendEmail(message: TranslationBase.of(context).emailSentSuccessfully);
|
|
|
|
model.sendEmail(message: TranslationBase.of(context).emailSentSuccessfully);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
},
|
|
|
|
},
|
|
|
|
),
|
|
|
|
|
|
|
|
),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
// ],
|
|
|
|
),
|
|
|
|
// ),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
),
|
|
|
|
);
|
|
|
|
);
|
|
|
|
|