fix small issue in radiology

merge-requests/362/head
Elham Rababah 5 years ago
parent 7ebf36f98f
commit 96d07e7a59

@ -18,7 +18,9 @@ class RadiologyReportScreen extends StatelessWidget {
return AppScaffold( return AppScaffold(
appBarTitle: TranslationBase.of(context).radiologyReport, appBarTitle: TranslationBase.of(context).radiologyReport,
body: SingleChildScrollView( body: SingleChildScrollView(
child: Container( child: Column(
children: [
Container(
padding: EdgeInsets.all(10), padding: EdgeInsets.all(10),
margin: EdgeInsets.all(10), margin: EdgeInsets.all(10),
decoration: BoxDecoration( decoration: BoxDecoration(
@ -36,6 +38,9 @@ class RadiologyReportScreen extends StatelessWidget {
fontSize: 2.5 * SizeConfig.textMultiplier, fontSize: 2.5 * SizeConfig.textMultiplier,
), ),
), ),
SizedBox(height:MediaQuery.of(context).size.height * 0.13 ,)
],
),
), ),
bottomSheet: url == null bottomSheet: url == null
? Container( ? Container(

Loading…
Cancel
Save