8 lines
121 B
Dart
8 lines
121 B
Dart
import 'package:flutter/material.dart';
|
|
import 'myApp.dart';
|
|
|
|
void main() {
|
|
runApp(MyApp());
|
|
print("App started");
|
|
}
|