|
|
|
|
@ -57,7 +57,8 @@ class _MyReferredPatientWidgetState extends State<MyReferredPatientWidget> {
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Row(
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceAround,
|
|
|
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
|
|
|
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
AppText(
|
|
|
|
|
'${widget.myReferredPatientModel.firstName} ${widget.myReferredPatientModel.lastName}',
|
|
|
|
|
@ -85,7 +86,12 @@ class _MyReferredPatientWidgetState extends State<MyReferredPatientWidget> {
|
|
|
|
|
Column(
|
|
|
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Divider(color: Colors.grey),
|
|
|
|
|
Divider(color: Colors.grey),
|
|
|
|
|
|
|
|
|
|
// VerticalDivider(color: Colors.black,
|
|
|
|
|
// thickness: 2, width: 20,
|
|
|
|
|
// indent: 200,
|
|
|
|
|
// endIndent: 200,),
|
|
|
|
|
Row(
|
|
|
|
|
children: <Widget>[
|
|
|
|
|
Expanded(
|
|
|
|
|
@ -109,7 +115,7 @@ class _MyReferredPatientWidgetState extends State<MyReferredPatientWidget> {
|
|
|
|
|
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
height: SizeConfig.realScreenWidth * 0.1,
|
|
|
|
|
height: SizeConfig.realScreenWidth * .1,//0.1,
|
|
|
|
|
width: 0.8,
|
|
|
|
|
color: Colors.grey,
|
|
|
|
|
margin: EdgeInsets.only(left: 15, right: 15),
|
|
|
|
|
|