// 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'ashtml;import'package:flutter/material.dart';// ignore_for_file: public_member_api_docsvoidstartApp()=>runApp(MyWebApp());classMyWebAppextendsStatefulWidget{@override_MyWebAppStatecreateState()=>_MyWebAppState();}class_MyWebAppStateextendsState<MyWebApp>{@overrideWidgetbuild(BuildContextcontext){returnMaterialApp(home:Scaffold(appBar:AppBar(title:constText('Plugin example app'),),body:Center(key:constKey('mainapp'),child:Text('Platform: ${html.window.navigator.platform}\n'),),),);}}