about_page.dart 407 B

12345678910111213141516
  1. import 'package:flutter/src/widgets/framework.dart';
  2. import 'package:flutter/src/widgets/placeholder.dart';
  3. class AboutPage extends StatefulWidget {
  4. const AboutPage({Key? key}) : super(key: key);
  5. @override
  6. State<AboutPage> createState() => _AboutPageState();
  7. }
  8. class _AboutPageState extends State<AboutPage> {
  9. @override
  10. Widget build(BuildContext context) {
  11. return const Placeholder();
  12. }
  13. }