This commit is contained in:
2022-10-26 14:53:22 +08:00
parent 72807d7233
commit 875b44ffb9
8 changed files with 28 additions and 37 deletions

View 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(),
);
}
}