update appointment widget call with business object
This commit is contained in:
parent
e1bc23acc9
commit
bd3002a518
1 changed files with 5 additions and 1 deletions
|
|
@ -66,7 +66,11 @@ class _MzansiCalendarState extends State<MzansiCalendar> {
|
||||||
List<Widget> getToolBody() {
|
List<Widget> getToolBody() {
|
||||||
List<Widget> toolBodies = [
|
List<Widget> toolBodies = [
|
||||||
//appointment here
|
//appointment here
|
||||||
Appointments(signedInUser: widget.arguments.signedInUser),
|
Appointments(
|
||||||
|
signedInUser: widget.arguments.signedInUser,
|
||||||
|
business: widget.arguments.business,
|
||||||
|
personalSelected: widget.arguments.personalSelected,
|
||||||
|
),
|
||||||
];
|
];
|
||||||
return toolBodies;
|
return toolBodies;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue