Update loyout Builder and update all widgets that call it
This commit is contained in:
@@ -326,6 +326,8 @@ class _MIHAboutState extends State<MIHAbout> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -350,6 +350,8 @@ class _PatientAccessRequestState extends State<PatientAccessRequest> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
// return Scaffold(
|
||||
// // appBar: const MIHAppBar(
|
||||
|
||||
@@ -355,6 +355,8 @@ class _ForgotPasswordState extends State<ForgotPassword> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -411,6 +411,8 @@ class _RegisterState extends State<Register> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -413,6 +413,8 @@ class _ResetPasswordState extends State<ResetPassword> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -578,6 +578,8 @@ class _SignInState extends State<SignIn> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -372,6 +372,8 @@ class _ManageBusinessProfileState extends State<ManageBusinessProfile> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
// return Scaffold(
|
||||
// // appBar: const MIHAppBar(
|
||||
|
||||
@@ -437,6 +437,8 @@ class _ProfileBusinessAddState extends State<ProfileBusinessAdd> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
|
||||
// return Scaffold(
|
||||
|
||||
@@ -416,6 +416,22 @@ class _HomeTileGridState extends State<HomeTileGrid> {
|
||||
p: getPrim(),
|
||||
s: getSec(),
|
||||
));
|
||||
tileList.add(MIHTile(
|
||||
onTap: () {
|
||||
Navigator.of(context).popAndPushNamed(
|
||||
'/homev2',
|
||||
arguments: widget.signedInUser,
|
||||
);
|
||||
},
|
||||
tileName: "HomeV2 - Dev",
|
||||
tileIcon: Icon(
|
||||
Icons.home,
|
||||
color: getSec(),
|
||||
size: 200,
|
||||
),
|
||||
p: getPrim(),
|
||||
s: getSec(),
|
||||
));
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
@@ -439,6 +439,8 @@ class _ProfileUserUpdateState extends State<ProfileUserUpdate> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
@@ -396,6 +396,8 @@ class _AddPatientState extends State<AddPatient> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
// return Scaffold(
|
||||
// // appBar: const MIHAppBar(
|
||||
|
||||
@@ -660,6 +660,8 @@ class _EditPatientState extends State<EditPatient> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
// return Scaffold(
|
||||
// // appBar: const MIHAppBar(
|
||||
|
||||
@@ -416,6 +416,8 @@ class _PatientManagerState extends State<PatientManager> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
// return Scaffold(
|
||||
// // appBar: const MIHAppBar(
|
||||
|
||||
@@ -180,6 +180,8 @@ class _PatientViewState extends State<PatientView> {
|
||||
actionButton: getActionButton(),
|
||||
header: getHeader(),
|
||||
body: getBody(),
|
||||
rightDrawer: null,
|
||||
bottomNavBar: null,
|
||||
);
|
||||
// return Scaffold(
|
||||
// body: SafeArea(
|
||||
|
||||
Reference in New Issue
Block a user