1234567891011121314151617 |
- import 'package:flutter/src/foundation/key.dart';
- import 'package:flutter/src/widgets/framework.dart';
- import 'package:flutter/src/widgets/placeholder.dart';
- class AboutPage extends StatefulWidget {
- const AboutPage({Key? key}) : super(key: key);
- @override
- State<AboutPage> createState() => _AboutPageState();
- }
- class _AboutPageState extends State<AboutPage> {
- @override
- Widget build(BuildContext context) {
- return const Placeholder();
- }
- }
|