82 lines
2.1 KiB
Dart
82 lines
2.1 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/app_user.dart';
|
|
import 'package:mzansi_innovation_hub/mih_packages/access_review/package_tools/mih_access_requests.dart';
|
|
import 'package:flutter/material.dart';
|
|
|
|
class MihAccess extends StatefulWidget {
|
|
final AppUser signedInUser;
|
|
const MihAccess({
|
|
super.key,
|
|
required this.signedInUser,
|
|
});
|
|
|
|
@override
|
|
State<MihAccess> createState() => _MihAccessState();
|
|
}
|
|
|
|
class _MihAccessState extends State<MihAccess> {
|
|
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: () {
|
|
context.goNamed(
|
|
'mihHome',
|
|
extra: true,
|
|
);
|
|
FocusScope.of(context).unfocus();
|
|
},
|
|
);
|
|
}
|
|
|
|
MihPackageTools getTools() {
|
|
Map<Widget, void Function()?> temp = {};
|
|
temp[const Icon(Icons.people)] = () {
|
|
setState(() {
|
|
_selcetedIndex = 0;
|
|
});
|
|
};
|
|
return MihPackageTools(
|
|
tools: temp,
|
|
selcetedIndex: _selcetedIndex,
|
|
);
|
|
}
|
|
|
|
List<Widget> getToolBody() {
|
|
List<Widget> toolBodies = [
|
|
MihAccessRequest(
|
|
signedInUser: widget.signedInUser,
|
|
),
|
|
];
|
|
return toolBodies;
|
|
}
|
|
|
|
List<String> getToolTitle() {
|
|
List<String> toolTitles = [
|
|
"Access",
|
|
];
|
|
return toolTitles;
|
|
}
|
|
}
|