flutter/packages/integration_test/example/lib/my_web_app.dart
Michael Goderbauer 1adc27503f
Bump min SDK to 2.19.0-0 (#117345)
* Bump min SDK to 2.19.0-0

* fix
2022-12-20 00:46:14 +00:00

35 lines
858 B
Dart

// 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:html' as html;
import 'package:flutter/material.dart';
// ignore_for_file: public_member_api_docs
void startApp() => runApp(const MyWebApp());
class MyWebApp extends StatefulWidget {
const MyWebApp({super.key});
@override
State<MyWebApp> createState() => _MyWebAppState();
}
class _MyWebAppState extends State<MyWebApp> {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(
title: const Text('Plugin example app'),
),
body: Center(
key: const Key('mainapp'),
child: Text('Platform: ${html.window.navigator.platform}\n'),
),
),
);
}
}