add manage team tile
This commit is contained in:
parent
6d4933a2ad
commit
a3e9cf756a
1 changed files with 20 additions and 0 deletions
|
|
@ -153,6 +153,26 @@ class _HomeTileGridState extends State<HomeTileGrid> {
|
||||||
p: getPrim(),
|
p: getPrim(),
|
||||||
s: getSec(),
|
s: getSec(),
|
||||||
));
|
));
|
||||||
|
tileList.add(HomeTile(
|
||||||
|
onTap: () {
|
||||||
|
Navigator.of(context).pushNamed(
|
||||||
|
'/business-profile/manage',
|
||||||
|
arguments: BusinessArguments(
|
||||||
|
widget.signedInUser,
|
||||||
|
widget.businessUser,
|
||||||
|
widget.business,
|
||||||
|
),
|
||||||
|
);
|
||||||
|
},
|
||||||
|
tileName: "Manage Team",
|
||||||
|
tileIcon: Icon(
|
||||||
|
Icons.people_outline,
|
||||||
|
color: getSec(),
|
||||||
|
size: 200,
|
||||||
|
),
|
||||||
|
p: getPrim(),
|
||||||
|
s: getSec(),
|
||||||
|
));
|
||||||
}
|
}
|
||||||
if (widget.business!.type == "Doctors Office") {
|
if (widget.business!.type == "Doctors Office") {
|
||||||
tileList.add(HomeTile(
|
tileList.add(HomeTile(
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue