我的二维码
This commit is contained in:
@@ -1,4 +1,8 @@
|
||||
import 'package:chat/configs/app_colors.dart';
|
||||
import 'package:chat/routes/user_routes.dart';
|
||||
import 'package:chat/views/home/widgets/action_item.dart';
|
||||
import 'package:flutter/material.dart';
|
||||
import 'package:get/get.dart';
|
||||
|
||||
class UserServePage extends StatefulWidget {
|
||||
const UserServePage({Key? key}) : super(key: key);
|
||||
@@ -14,7 +18,20 @@ class _UserServePageState extends State<UserServePage> {
|
||||
appBar: AppBar(
|
||||
title: const Text('服务'),
|
||||
),
|
||||
body: Container(),
|
||||
body: Column(
|
||||
children: [
|
||||
ActionItem(
|
||||
'谷歌验证器',
|
||||
onTap: () {
|
||||
Get.toNamed(UserRoutes.serveGoogle);
|
||||
},
|
||||
),
|
||||
const Divider(
|
||||
height: 0,
|
||||
color: AppColors.border,
|
||||
),
|
||||
],
|
||||
),
|
||||
);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user