1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00
Files
samples/null_safety/null_safe_app/lib/main.dart
2021-03-03 13:01:08 -08:00

12 lines
319 B
Dart

// Copyright 2020, the Flutter project authors. Please see the AUTHORS file
// for details. 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 'goodapp.dart';
void main() {
runApp(GoodMyApp());
}