fluro/example/lib/main.dart

15 lines
301 B
Dart

/*
* fluro
* Created by Yakka
* https://theyakka.com
*
* Copyright (c) 2019 Yakka, LLC. All rights reserved.
* See LICENSE for distribution and usage details.
*/
import 'components/app/app_component.dart';
import 'package:flutter/material.dart';
void main() {
runApp(new AppComponent());
}