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