will-play/lib/views/information/Information.dart

18 lines
396 B
Dart

import 'package:flutter/material.dart';
class InformationPage extends StatefulWidget {
InformationPage({Key? key}) : super(key: key);
@override
State<InformationPage> createState() => _InformationPageState();
}
class _InformationPageState extends State<InformationPage> {
@override
Widget build(BuildContext context) {
return Container(
child: Text("消息"),
);
}
}