about_page.dart 424 B

123456789101112131415161718
  1. import 'package:flutter/material.dart';
  2. /// Description:
  3. /// Time : 2021年12月03日 Friday
  4. /// Author : liuyuqi.gov@msncn
  5. class AboutPage extends StatefulWidget {
  6. const AboutPage({Key key}) : super(key: key);
  7. @override
  8. _AboutPageState createState() => _AboutPageState();
  9. }
  10. class _AboutPageState extends State<AboutPage> {
  11. @override
  12. Widget build(BuildContext context) {
  13. return Container();
  14. }
  15. }