我的二维码

This commit is contained in:
2022-10-31 11:58:17 +08:00
parent 55a1801895
commit b7f0fe3ac8
5 changed files with 59 additions and 18 deletions

View File

@@ -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,
),
],
),
);
}
}