Skip to content

Instantly share code, notes, and snippets.

@nicowernli
Last active December 11, 2019 13:08
Show Gist options
  • Save nicowernli/38eb433c073c13123f179033b75d5ed9 to your computer and use it in GitHub Desktop.
Save nicowernli/38eb433c073c13123f179033b75d5ed9 to your computer and use it in GitHub Desktop.
main_development muestra la configuración de dev
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