Last active
August 30, 2019 02:43
-
-
Save datvtwkm/9b72f68bfac99de8a11b21bff61600fa to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter_demo_setup/env.dart'; | |
import 'package:flutter_demo_setup/my_app.dart'; | |
void main() => runApp(MyApp(env: EnvValue.development)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter_demo_setup/env.dart'; | |
import 'package:flutter_demo_setup/my_app.dart'; | |
void main() => runApp(MyApp(env: EnvValue.production)); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import 'package:flutter/material.dart'; | |
import 'package:flutter_demo_setup/env.dart'; | |
import 'package:flutter_demo_setup/my_app.dart'; | |
void main() => runApp(MyApp(env: EnvValue.staging)); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment