main.dart 589 Bytes
Newer Older
1 2 3 4 5 6 7 8 9
// Copyright 2014 The Flutter Authors. 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';

String? unused;

void main() {
10
  runApp(const MyApp());
11 12 13
}

class MyApp extends StatelessWidget {
14 15
  const MyApp({Key? key}) : super(key: key);

16 17 18 19 20 21 22 23 24 25 26
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      home: const Center(child: Text('hello, world'))
    );
  }
}