Last active
December 11, 2019 13:07
-
-
Save nicowernli/d8ba168a4c8f8674204920daa5dc51ee to your computer and use it in GitHub Desktop.
main_integration muestra la configuración para integration
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://integration-api-base-url.com', | |
flavorName: 'int', | |
child: MyApp(flavor: 'int'), | |
)); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment