Skip to content

Instantly share code, notes, and snippets.

@Andrious
Created March 23, 2020 16:27
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Andrious/cc489a3b9cbb83fca1489a3bd894f806 to your computer and use it in GitHub Desktop.
Save Andrious/cc489a3b9cbb83fca1489a3bd894f806 to your computer and use it in GitHub Desktop.
The main-entry file for the 'Write Your First App' example.
import 'package:flutter/cupertino.dart' show runApp;
//import 'package:flutter/material.dart' show runApp;
import 'src/controller/MyApp.dart' show MyApp;
void main() => runApp(MyApp(
// switchUI: true,
));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment