format
This commit is contained in:
@@ -32,7 +32,7 @@ class _UserPageState extends State<UserPage> {
|
||||
ActionItem(
|
||||
'服务',
|
||||
onTap: () {
|
||||
Get.toNamed(UserRoutes.share);
|
||||
Get.toNamed(UserRoutes.serve);
|
||||
},
|
||||
),
|
||||
const Divider(
|
||||
|
||||
20
lib/views/user/serve/index_page.dart
Normal file
20
lib/views/user/serve/index_page.dart
Normal file
@@ -0,0 +1,20 @@
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class UserServePage extends StatefulWidget {
|
||||
const UserServePage({Key? key}) : super(key: key);
|
||||
|
||||
@override
|
||||
State<UserServePage> createState() => _UserServePageState();
|
||||
}
|
||||
|
||||
class _UserServePageState extends State<UserServePage> {
|
||||
@override
|
||||
Widget build(BuildContext context) {
|
||||
return Scaffold(
|
||||
appBar: AppBar(
|
||||
title: const Text('服务'),
|
||||
),
|
||||
body: Container(),
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user