flutter_apm_test 0.0.1
flutter_apm_test: ^0.0.1 copied to clipboard
A new flutter plugin project.
example/lib/main.dart
// Copyright 2018 The Flutter team. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
import 'package:flutter/material.dart';
import 'package:flutter_apm_example/screens/first_screen.dart';
void main() => runApp(MyApp());
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Startup Name Generator',
home: FirstScreen(),
);
}
}