import 'package:flutter/material.dart'; class UserServePage extends StatefulWidget { const UserServePage({Key? key}) : super(key: key); @override State createState() => _UserServePageState(); } class _UserServePageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('服务'), ), body: Container(), ); } }