修复错别字

This commit is contained in:
葛佳祥 2024-01-23 17:21:04 +08:00
parent 9514b7c9d5
commit 8718ffed35
3 changed files with 8 additions and 8 deletions

View File

@ -306,7 +306,7 @@ abstract class Routers {
static const messageListPage = '/MessageListPage'; // -
static const supportStaffPage = '/SupportStaffPage'; // -
static const valueAddedServicesPage = '/ValueAddedServicesPage'; // -
static const abountPage = '/AbountPage'; // -
static const aboutPage = '/AboutPage'; // -
static const valueAddedServicesNoteAndEmailDetailPage =
'/ValueAddedServicesNoteAndEmailDetailPage'; // -
@ -747,8 +747,8 @@ abstract class AppRouters {
page: () => const ValueAddedServicesListPage(),
),
GetPage(
name: Routers.abountPage,
page: () => const AbountPage(),
name: Routers.aboutPage,
page: () => const AboutPage(),
),
GetPage(
name: Routers.gatewayDetailPage,

View File

@ -10,14 +10,14 @@ import '../../tools/titleAppBar.dart';
import '../../translations/trans_lib.dart';
import '../../network/api.dart';
class AbountPage extends StatefulWidget {
const AbountPage({Key? key}) : super(key: key);
class AboutPage extends StatefulWidget {
const AboutPage({Key? key}) : super(key: key);
@override
State<AbountPage> createState() => _AbountPageState();
State<AboutPage> createState() => _AboutPageState();
}
class _AbountPageState extends State<AbountPage> {
class _AboutPageState extends State<AboutPage> {
@override
Widget build(BuildContext context) {
return Scaffold(

View File

@ -155,7 +155,7 @@ class _StarLockMinePageState extends State<StarLockMinePage> with BaseWidget {
mineItem('images/mine/icon_mine_main_about.png',
TranslationLoader.lanKeys!.about!.tr, () {
Get.back();
Get.toNamed(Routers.abountPage);
Get.toNamed(Routers.aboutPage);
}),
],
),