20 lines
397 B
Dart
20 lines
397 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class UserPage extends StatefulWidget {
|
|
const UserPage({Key? key}) : super(key: key);
|
|
|
|
@override
|
|
_UserPageState createState() => _UserPageState();
|
|
}
|
|
|
|
class _UserPageState extends State<UserPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
appBar: AppBar(
|
|
title: const Text('我的'),
|
|
),
|
|
);
|
|
}
|
|
}
|