37 lines
1.0 KiB
Dart
Executable File
37 lines
1.0 KiB
Dart
Executable File
import 'package:flutter/material.dart';
|
|
import 'package:get/get.dart';
|
|
import '../../../../../../app_settings/app_colors.dart';
|
|
import '../../../../../../tools/titleAppBar.dart';
|
|
import 'massSendElectronicKeyManage_tabbar.dart';
|
|
|
|
class MassSendElectronicKeyManagePage extends StatefulWidget {
|
|
const MassSendElectronicKeyManagePage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
State<MassSendElectronicKeyManagePage> createState() =>
|
|
_MassSendElectronicKeyManagePageState();
|
|
}
|
|
|
|
class _MassSendElectronicKeyManagePageState
|
|
extends State<MassSendElectronicKeyManagePage> {
|
|
var index = 0;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: AppColors.mainBackgroundColor,
|
|
appBar: TitleAppBar(
|
|
barTitle: '群发钥匙'.tr,
|
|
haveBack: true,
|
|
backgroundColor: AppColors.mainColor),
|
|
body: Column(
|
|
children: [
|
|
MassSendElectronicKeyManageTabbar(
|
|
initialIndex: index,
|
|
),
|
|
],
|
|
),
|
|
);
|
|
}
|
|
}
|