|
|
|
|
@ -126,13 +126,13 @@ class RRTRequestPageState extends State<RRTRequestPage> {
|
|
|
|
|
),
|
|
|
|
|
priceTable(context),
|
|
|
|
|
acceptPolicy(),
|
|
|
|
|
Container(height: 0.5, color: Theme.of(context).appBarTheme.color), // Seperator
|
|
|
|
|
Container(height: 0.5, color: Theme.of(context).appBarTheme.backgroundColor), // Seperator
|
|
|
|
|
|
|
|
|
|
Container(
|
|
|
|
|
padding: EdgeInsets.only(top: 20, bottom: 5),
|
|
|
|
|
alignment: Alignment.center,
|
|
|
|
|
child: Text(TranslationBase.of(context).youCanPayByTheFollowingOptions,
|
|
|
|
|
style: TextStyle(fontSize: 13, color: Theme.of(context).appBarTheme.color, fontWeight: FontWeight.w500), maxLines: 2)),
|
|
|
|
|
style: TextStyle(fontSize: 13, color: Theme.of(context).appBarTheme.backgroundColor, fontWeight: FontWeight.w500), maxLines: 2)),
|
|
|
|
|
|
|
|
|
|
Container(margin: EdgeInsets.only(left: 15.0, right: 15.0, top: 10.0), child: getPaymentMethods())
|
|
|
|
|
],
|
|
|
|
|
@ -173,15 +173,15 @@ class RRTRequestPageState extends State<RRTRequestPage> {
|
|
|
|
|
children: [
|
|
|
|
|
Container(
|
|
|
|
|
height: 30,
|
|
|
|
|
decoration: BoxDecoration(color: Theme.of(context).appBarTheme.color, borderRadius: BorderRadius.only(topLeft: radius, topRight: radius)),
|
|
|
|
|
decoration: BoxDecoration(color: Theme.of(context).appBarTheme.backgroundColor, borderRadius: BorderRadius.only(topLeft: radius, topRight: radius)),
|
|
|
|
|
child: Center(child: Text(TranslationBase.of(context).approximateServiceFee, style: TextStyle(color: Colors.white, fontSize: 12, fontWeight: FontWeight.w500, letterSpacing: 1))),
|
|
|
|
|
),
|
|
|
|
|
pricingRow(label: TranslationBase.of(context).patientShare, value: '$amount ${TranslationBase.of(context).sar}'),
|
|
|
|
|
Container(height: 0.5, color: Theme.of(context).appBarTheme.color),
|
|
|
|
|
Container(height: 0.5, color: Theme.of(context).appBarTheme.backgroundColor),
|
|
|
|
|
pricingRow(label: TranslationBase.of(context).patientTaxToDo, value: '$vat ${TranslationBase.of(context).sar}'),
|
|
|
|
|
Container(height: 0.5, color: Theme.of(context).appBarTheme.color),
|
|
|
|
|
Container(height: 0.5, color: Theme.of(context).appBarTheme.backgroundColor),
|
|
|
|
|
pricingRow(label: TranslationBase.of(context).patientShareWithTax, value: '$total ${TranslationBase.of(context).sar}', labelBold: true),
|
|
|
|
|
Container(height: 0.5, color: Theme.of(context).appBarTheme.color),
|
|
|
|
|
Container(height: 0.5, color: Theme.of(context).appBarTheme.backgroundColor),
|
|
|
|
|
],
|
|
|
|
|
);
|
|
|
|
|
}
|
|
|
|
|
@ -196,7 +196,7 @@ class RRTRequestPageState extends State<RRTRequestPage> {
|
|
|
|
|
Spacer(),
|
|
|
|
|
Container(
|
|
|
|
|
height: 35,
|
|
|
|
|
color: Theme.of(context).appBarTheme.color,
|
|
|
|
|
color: Theme.of(context).appBarTheme.backgroundColor,
|
|
|
|
|
width: 0.5,
|
|
|
|
|
),
|
|
|
|
|
Container(
|
|
|
|
|
|