Last active
December 11, 2019 13:08
-
-
Save nicowernli/38eb433c073c13123f179033b75d5ed9 to your computer and use it in GitHub Desktop.
main_development muestra la configuración de dev
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 'app_config.dart'; | |
import 'my_app.dart'; | |
void main() { | |
runApp(AppConfig( | |
apiBaseUrl: 'https://development-api-base-url.com/', | |
flavorName: 'dev', | |
child: MyApp(flavor: 'dev'), | |
)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment