|
|
|
|
@ -9,7 +9,6 @@ import 'package:flutter_html/flutter_html.dart';
|
|
|
|
|
import 'package:provider/provider.dart';
|
|
|
|
|
|
|
|
|
|
class PharmacyTermsConditions extends StatelessWidget {
|
|
|
|
|
|
|
|
|
|
@override
|
|
|
|
|
Widget build(BuildContext context) {
|
|
|
|
|
ProjectViewModel projectProvider = Provider.of(context);
|
|
|
|
|
@ -17,9 +16,10 @@ class PharmacyTermsConditions extends StatelessWidget {
|
|
|
|
|
return BaseView<TermsConditionViewModel>(
|
|
|
|
|
onModelReady: (model) => model.getUserTermsAndConditionsForEPharmcy(),
|
|
|
|
|
builder: (_, model, wi) => AppScaffold(
|
|
|
|
|
title: "Terms of service",
|
|
|
|
|
title: TranslationBase.of(context).termOfService,
|
|
|
|
|
isShowAppBar: true,
|
|
|
|
|
isShowDecPage: false,
|
|
|
|
|
isPharmacy: true,
|
|
|
|
|
backgroundColor: Colors.white,
|
|
|
|
|
baseViewModel: model,
|
|
|
|
|
body: Container(
|
|
|
|
|
|