add title to Calendar
This commit is contained in:
parent
ddeb84c9ee
commit
417007c1d6
2 changed files with 9 additions and 8 deletions
|
|
@ -25,6 +25,7 @@ class _MzansiCalendarState extends State<MzansiCalendar> {
|
|||
appActionButton: getAction(),
|
||||
appTools: getTools(),
|
||||
appBody: getToolBody(),
|
||||
appToolTitles: getToolTitle(),
|
||||
selectedbodyIndex: _selcetedIndex,
|
||||
onIndexChange: (newValue) {
|
||||
setState(() {
|
||||
|
|
@ -72,4 +73,11 @@ class _MzansiCalendarState extends State<MzansiCalendar> {
|
|||
];
|
||||
return toolBodies;
|
||||
}
|
||||
|
||||
List<String> getToolTitle() {
|
||||
List<String> toolTitles = [
|
||||
widget.arguments.personalSelected == true ? "Personal" : "Business",
|
||||
];
|
||||
return toolTitles;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue