fix issue on add examination

merge-requests/617/head
Elham Rababah 5 years ago
parent 30bc9b4bea
commit 8e9687c2ed

@ -112,26 +112,46 @@ class _AddExaminationPageState extends State<AddExaminationPage> {
), ),
), ),
), ),
Container( ],
padding: EdgeInsets.all(16), ),
bottomSheet: Container(
decoration: BoxDecoration(
color: Colors.white, color: Colors.white,
borderRadius: BorderRadius.all(
Radius.circular(0.0),
),
border: Border.all(color: HexColor('#707070'), width: 0),
),
height: MediaQuery.of(context).size.height * 0.1,
width: double.infinity,
child: Column(
children: [
SizedBox(
height: 10,
),
Container(
child: FractionallySizedBox(
widthFactor: .80,
child: Center(
child: AppButton( child: AppButton(
title:"${TranslationBase.of(context).addExamination}", title:
color: HexColor("#359846"), "${TranslationBase.of(context).addExamination}",
fontColor: Colors.white, padding: 10,
vPadding: 12, color: Color(0xFF359846),
radius: 12,
fontWeight: FontWeight.w600,
fontSize: SizeConfig.textMultiplier * 2.5,
onPressed: () { onPressed: () {
widget.addSelectedExamination(); widget.addSelectedExamination();
}, },
), ),
) ),
),
),
SizedBox(
height: 5,
),
], ],
), ),
), ),
); ));
} }
isServiceSelected(MasterKeyModel masterKey) { isServiceSelected(MasterKeyModel masterKey) {

Loading…
Cancel
Save