| 1234567891011121314151617181920212223242526272829303132333435 |
- // 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<App> {
- @override
- Widget build(BuildContext context) {
- return MaterialApp(
- title: 'Flutter Demo',
- theme: ThemeData(
- primarySwatch: Colors.blue
- ),
- home: MyHomePage(title: 'MyHomePage'),
- );
- }
- }
|