fluro/example/lib/main.dart

13 lines
307 B
Dart

/*
* fluro
* A Posse Production
* http://goposse.com
* Copyright (c) 2018 Posse Productions 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());
}