// Copyright 2021 The Flutter team. All rights reserved. // Use of this source code is governed by a BSD-style license that can be // found in the LICENSE file. import 'package:flutter/material.dart'; import 'myself/my_home.dart'; void main() { runApp( const App(), ); } class App extends StatefulWidget { const App({super.key}); @override _AppState createState() => _AppState(); } class _AppState extends State { @override Widget build(BuildContext context) { return MaterialApp( title: 'Flutter Demo', theme: ThemeData( primarySwatch: Colors.blue ), home: MyHomePage(title: 'MyHomePage'), ); } }