add title to About MIH

This commit is contained in:
2025-05-29 15:37:25 +02:00
parent 87777d5435
commit 7c6d0d0650
6 changed files with 16 additions and 38 deletions

View File

@@ -35,6 +35,7 @@ class _AboutMihState extends State<AboutMih> {
appActionButton: getAction(),
appTools: getTools(),
appBody: getToolBody(),
appToolTitles: getToolTitle(),
selectedbodyIndex: _selcetedIndex,
onIndexChange: (newValue) {
setState(() {
@@ -93,4 +94,14 @@ class _AboutMihState extends State<AboutMih> {
];
return toolBodies;
}
List<String> getToolTitle() {
List<String> toolTitles = [
"About",
"Privacy Policy",
"Terms of Service",
"Attributes",
];
return toolTitles;
}
}