import 'package:flutter/material.dart'; 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(); } }