1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 22:09:06 +00:00
Files
samples/null_safety/null_safe_app/lib/main.dart
2021-06-07 20:53:25 +10:00

12 lines
325 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(const GoodMyApp());
}