blob: c0ea09da24e4b2c2ab8bb29cac3a2a9c6aacf4bc [file] [log] [blame]
// Copyright 2013 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(MyWebApp());
class MyWebApp extends StatefulWidget {
@override
_MyWebAppState 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: Key('mainapp'),
child: Text('Platform: ${html.window.navigator.platform}\n'),
),
),
);
}
}