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