main.dart 297 B

1234567891011121314
  1. /*
  2. * fluro
  3. * Created by Yakka
  4. * https://theyakka.com
  5. *
  6. * Copyright (c) 2019 Yakka, LLC. All rights reserved.
  7. * See LICENSE for distribution and usage details.
  8. */
  9. import 'components/app/app_component.dart';
  10. import 'package:flutter/material.dart';
  11. void main() {
  12. runApp(AppComponent());
  13. }