blob: 2509fb390ff49ce513bd6ba4dfcbc602c1e61e0b [file] [log] [blame]
import 'dart:io' show Platform;
import 'package:flutter/material.dart';
// ignore_for_file: public_member_api_docs
void main() => runApp(MyApp());
class MyApp extends StatefulWidget {
@override
_MyAppState createState() => _MyAppState();
}
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'),
),
),
);
}
}