123456789101112131415161718 |
- 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<AboutPage> {
- @override
- Widget build(BuildContext context) {
- return Container();
- }
- }
|