Files
fcs/lib/main-dev.dart

19 lines
496 B
Dart
Raw Normal View History

2020-05-29 07:45:27 +06:30
import 'package:flutter/material.dart';
import 'package:logging/logging.dart';
import 'package:fcs/config.dart';
2020-05-31 15:00:11 +06:30
import 'package:shared_preferences/shared_preferences.dart';
2020-05-29 07:45:27 +06:30
import 'app.dart';
void main() {
Config(
2020-08-26 16:01:13 +06:30
flavor: Flavor.DEV,
2020-05-29 07:45:27 +06:30
color: Colors.blue,
apiURL:
"https://asia-northeast1-mokkon-wholesale-dev.cloudfunctions.net/APIOK",
reportURL: "http://petrok-dev.mokkon.com:8080",
reportProjectID: "dev",
level: Level.ALL);
runApp(App());
}