import 'package:flutter/material.dart'; class PartyPage extends StatefulWidget { PartyPage({Key? key}) : super(key: key); @override State createState() => _PartyPageState(); } class _PartyPageState extends State { @override Widget build(BuildContext context) { return Container( child: Text('派对'), ); } }