import 'package:flutter/material.dart'; class UserInfoPage extends StatefulWidget { const UserInfoPage({Key? key}) : super(key: key); @override State createState() => _UserInfoPageState(); } class _UserInfoPageState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppBar( title: const Text('用户资料'), ), ); } }