my_app.dart 798 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 'dart:io' show Platform;
import 'package:flutter/material.dart';

// ignore_for_file: public_member_api_docs

10
void startApp() => runApp(const MyApp());
11 12

class MyApp extends StatefulWidget {
13
  const MyApp({super.key});
14

15
  @override
16
  State<MyApp> createState() => _MyAppState();
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33
}

class _MyAppState extends State<MyApp> {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Plugin example app'),
        ),
        body: Center(
          child: Text('Platform: ${Platform.operatingSystem}\n'),
        ),
      ),
    );
  }
}