35 lines
883 B
Dart
Executable File
35 lines
883 B
Dart
Executable File
|
|
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import 'package:star_lock/tools/titleAppBar.dart';
|
|
|
|
import '../../../../app_settings/app_colors.dart';
|
|
import 'expireLockManage_tabbar.dart';
|
|
|
|
class ExpireLockManagePage extends StatefulWidget {
|
|
const ExpireLockManagePage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<ExpireLockManagePage> createState() => _ExpireLockManagePageState();
|
|
}
|
|
|
|
class _ExpireLockManagePageState extends State<ExpireLockManagePage> {
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
|
|
return Scaffold(
|
|
backgroundColor: AppColors.mainBackgroundColor,
|
|
appBar: TitleAppBar(
|
|
barTitle: '即将到期'.tr,
|
|
haveBack: true,
|
|
backgroundColor: AppColors.mainColor),
|
|
body: const Column(
|
|
children: <Widget>[
|
|
ExpireLockManageTabbar(),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|