import 'package:flutter/material.dart'; /// Description: /// Time : 2021年12月03日 Friday /// Author : liuyuqi.gov@msncn class AboutPage extends StatefulWidget { const AboutPage({Key? key}) : super(key: key); @override _AboutPageState createState() => _AboutPageState(); } class _AboutPageState extends State { @override Widget build(BuildContext context) { return Container(); } }