92 lines
2.4 KiB
Dart
92 lines
2.4 KiB
Dart
import 'package:go_router/go_router.dart';
|
|
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_package.dart';
|
|
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_package_action.dart';
|
|
import 'package:mzansi_innovation_hub/mih_components/mih_package_components/mih_package_tools.dart';
|
|
import 'package:mzansi_innovation_hub/mih_components/mih_objects/arguments.dart';
|
|
import 'package:mzansi_innovation_hub/mih_packages/calendar/package_tools/appointments.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class MzansiCalendar extends StatefulWidget {
|
|
final CalendarArguments arguments;
|
|
const MzansiCalendar({
|
|
super.key,
|
|
required this.arguments,
|
|
});
|
|
|
|
@override
|
|
State<MzansiCalendar> createState() => _MzansiCalendarState();
|
|
}
|
|
|
|
class _MzansiCalendarState extends State<MzansiCalendar> {
|
|
int _selcetedIndex = 0;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return MihPackage(
|
|
appActionButton: getAction(),
|
|
appTools: getTools(),
|
|
appBody: getToolBody(),
|
|
appToolTitles: getToolTitle(),
|
|
selectedbodyIndex: _selcetedIndex,
|
|
onIndexChange: (newValue) {
|
|
setState(() {
|
|
_selcetedIndex = newValue;
|
|
});
|
|
print("Index: $_selcetedIndex");
|
|
},
|
|
);
|
|
}
|
|
|
|
MihPackageAction getAction() {
|
|
return MihPackageAction(
|
|
icon: const Icon(Icons.arrow_back),
|
|
iconSize: 35,
|
|
onTap: () {
|
|
// Navigator.of(context).pop();
|
|
context.goNamed(
|
|
'home',
|
|
extra: AuthArguments(
|
|
true,
|
|
false,
|
|
),
|
|
);
|
|
FocusScope.of(context).unfocus();
|
|
},
|
|
);
|
|
}
|
|
|
|
MihPackageTools getTools() {
|
|
Map<Widget, void Function()?> temp = {};
|
|
temp[const Icon(Icons.calendar_month)] = () {
|
|
setState(() {
|
|
_selcetedIndex = 0;
|
|
});
|
|
};
|
|
|
|
return MihPackageTools(
|
|
tools: temp,
|
|
selcetedIndex: _selcetedIndex,
|
|
);
|
|
}
|
|
|
|
List<Widget> getToolBody() {
|
|
List<Widget> toolBodies = [
|
|
//appointment here
|
|
Appointments(
|
|
signedInUser: widget.arguments.signedInUser,
|
|
business: widget.arguments.business,
|
|
businessUser: widget.arguments.businessUser,
|
|
personalSelected: widget.arguments.personalSelected,
|
|
),
|
|
];
|
|
return toolBodies;
|
|
}
|
|
|
|
List<String> getToolTitle() {
|
|
List<String> toolTitles = [
|
|
widget.arguments.personalSelected == true ? "Personal" : "Business",
|
|
];
|
|
return toolTitles;
|
|
}
|
|
}
|