HMG Floward implementation done
parent
a4a638aa37
commit
92adef94ea
Binary file not shown.
|
After Width: | Height: | Size: 158 KiB |
@ -0,0 +1,49 @@
|
||||
import 'package:diplomaticquarterapp/pages/AlHabibMedicalService/my_web_view.dart';
|
||||
import 'package:diplomaticquarterapp/uitl/translations_delegate_base.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/data_display/medical/medical_profile_item.dart';
|
||||
import 'package:diplomaticquarterapp/widgets/others/app_scaffold_widget.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class PartnerServicesPage extends StatelessWidget {
|
||||
const PartnerServicesPage();
|
||||
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return AppScaffold(
|
||||
isShowAppBar: true,
|
||||
appBarTitle: TranslationBase.of(context).partnerServices,
|
||||
isShowDecPage: false,
|
||||
showNewAppBar: true,
|
||||
showNewAppBarTitle: true,
|
||||
backgroundColor: Color(0xffF8F8F8),
|
||||
body: GridView(
|
||||
gridDelegate: SliverGridDelegateWithFixedCrossAxisCount(crossAxisCount: 3, childAspectRatio: 2 / 2, crossAxisSpacing: 12, mainAxisSpacing: 12),
|
||||
physics: NeverScrollableScrollPhysics(),
|
||||
padding: EdgeInsets.all(21),
|
||||
shrinkWrap: true,
|
||||
children: [
|
||||
InkWell(
|
||||
onTap: () {
|
||||
// Navigator.push(context, FadePage(page: AmbulanceReq()));
|
||||
Navigator.of(context).push(
|
||||
MaterialPageRoute(
|
||||
builder: (BuildContext context) => MyWebView(
|
||||
title: "HMG Floward",
|
||||
selectedUrl: "https://hmg.floward.com/",
|
||||
),
|
||||
),
|
||||
);
|
||||
},
|
||||
child: MedicalProfileItem(
|
||||
title: "Floward",
|
||||
imagePath: 'assets/images/new-design/floward_logo.png',
|
||||
subTitle: "",
|
||||
isPngImage: true,
|
||||
isEnable: true,
|
||||
),
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue