main.dart 307 B

12345678910111213
  1. /*
  2. * fluro
  3. * A Posse Production
  4. * http://goposse.com
  5. * Copyright (c) 2018 Posse Productions LLC. All rights reserved.
  6. * See LICENSE for distribution and usage details.
  7. */
  8. import 'components/app/app_component.dart';
  9. import 'package:flutter/material.dart';
  10. void main() {
  11. runApp(new AppComponent());
  12. }