Merge branch 'clinic_list' into 'development'
Clinic list See merge request Cloud_Solution/doctor_app_flutter!362merge-requests/363/merge
commit
e2e3cd9a29
@ -1,37 +1,76 @@
|
|||||||
import 'package:doctor_app_flutter/config/size_config.dart';
|
import 'package:doctor_app_flutter/config/size_config.dart';
|
||||||
|
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
||||||
|
import 'package:doctor_app_flutter/widgets/shared/app_buttons_widget.dart';
|
||||||
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
import 'package:doctor_app_flutter/widgets/shared/app_scaffold_widget.dart';
|
||||||
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
import 'package:doctor_app_flutter/widgets/shared/app_texts_widget.dart';
|
||||||
import 'package:flutter/cupertino.dart';
|
import 'package:flutter/cupertino.dart';
|
||||||
import 'package:flutter/material.dart';
|
import 'package:flutter/material.dart';
|
||||||
import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
|
import 'package:url_launcher/url_launcher.dart';
|
||||||
|
|
||||||
class RadiologyReportScreen extends StatelessWidget {
|
class RadiologyReportScreen extends StatelessWidget {
|
||||||
final String reportData;
|
final String reportData;
|
||||||
|
final String url;
|
||||||
|
|
||||||
RadiologyReportScreen({Key key, this.reportData});
|
RadiologyReportScreen({Key key, this.reportData, this.url});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return AppScaffold(
|
return AppScaffold(
|
||||||
appBarTitle: TranslationBase.of(context).radiologyReport,
|
appBarTitle: TranslationBase.of(context).radiologyReport,
|
||||||
body: Container(
|
body: SingleChildScrollView(
|
||||||
padding: EdgeInsets.all(10),
|
child: Column(
|
||||||
margin: EdgeInsets.all(10),
|
children: [
|
||||||
decoration: BoxDecoration(
|
Container(
|
||||||
borderRadius: BorderRadius.all(Radius.circular(10)),
|
padding: EdgeInsets.all(10),
|
||||||
color: Colors.white,
|
margin: EdgeInsets.all(10),
|
||||||
border: Border(
|
decoration: BoxDecoration(
|
||||||
bottom: BorderSide(color: Colors.grey, width: 0.5),
|
borderRadius: BorderRadius.all(Radius.circular(10)),
|
||||||
top: BorderSide(color: Colors.grey, width: 0.5),
|
color: Colors.white,
|
||||||
left: BorderSide(color: Colors.grey, width: 0.5),
|
border: Border(
|
||||||
right: BorderSide(color: Colors.grey, width: 0.5),
|
bottom: BorderSide(color: Colors.grey, width: 0.5),
|
||||||
|
top: BorderSide(color: Colors.grey, width: 0.5),
|
||||||
|
left: BorderSide(color: Colors.grey, width: 0.5),
|
||||||
|
right: BorderSide(color: Colors.grey, width: 0.5),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
child: AppText(
|
||||||
|
reportData,
|
||||||
|
fontSize: 2.5 * SizeConfig.textMultiplier,
|
||||||
|
),
|
||||||
|
),
|
||||||
|
SizedBox(height:MediaQuery.of(context).size.height * 0.13 ,)
|
||||||
|
],
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
child: AppText(
|
bottomSheet: url == null
|
||||||
reportData,
|
? Container(
|
||||||
fontSize: 2.5 * SizeConfig.textMultiplier,
|
height: MediaQuery.of(context).size.height * 0,
|
||||||
),
|
)
|
||||||
),
|
: Container(
|
||||||
);
|
width: double.infinity,
|
||||||
|
height: MediaQuery.of(context).size.height * 0.1,
|
||||||
|
child: Column(
|
||||||
|
mainAxisSize: MainAxisSize.min,
|
||||||
|
children: <Widget>[
|
||||||
|
FractionallySizedBox(
|
||||||
|
widthFactor: 0.9,
|
||||||
|
child: Container(
|
||||||
|
child: Wrap(
|
||||||
|
alignment: WrapAlignment.center,
|
||||||
|
children: <Widget>[
|
||||||
|
// TODO change it secondary button and add loading
|
||||||
|
AppButton(
|
||||||
|
title: TranslationBase.of(context).openRad,
|
||||||
|
onPressed: () async {
|
||||||
|
launch(url);
|
||||||
|
},
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
),
|
||||||
|
),
|
||||||
|
],
|
||||||
|
),
|
||||||
|
));
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|||||||
Loading…
Reference in New Issue