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