app-starlock/star_lock/lib/mine/about/about_page.dart

30 lines
740 B
Dart
Raw Normal View History

2023-07-18 18:10:57 +08:00
import 'package:flutter/material.dart';
import 'package:get/get.dart';
import '../../app_settings/app_colors.dart';
import '../../tools/titleAppBar.dart';
import '../../translations/trans_lib.dart';
class AbountPage extends StatefulWidget {
const AbountPage({Key? key}) : super(key: key);
@override
State<AbountPage> createState() => _AbountPageState();
}
class _AbountPageState extends State<AbountPage> {
@override
Widget build(BuildContext context) {
return Scaffold(
backgroundColor: const Color(0xFFFFFFFF),
appBar: TitleAppBar(barTitle: TranslationLoader.lanKeys!.about!.tr, haveBack:true, backgroundColor: AppColors.mainColor),
body: Column(
children: [
],
),
);
}
}