1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-10 14:58:34 +00:00
Files
samples/experimental/null_safety/null_safe_app/lib/main.dart
2020-10-22 01:30:02 +02: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());
}