add sigin notification

This commit is contained in:
Sai Naw Wun
2020-09-20 08:06:14 +06:30
parent cb622b004b
commit 139fc8e7d3
8 changed files with 39 additions and 21 deletions

View File

@@ -1,7 +1,6 @@
import 'package:fcs/config.dart';
import 'package:flutter/material.dart';
import 'package:logging/logging.dart';
import 'package:fcs/config.dart';
import 'package:shared_preferences/shared_preferences.dart';
import 'app.dart';
@@ -10,10 +9,9 @@ void main() {
Config(
flavor: Flavor.PRODUCTION,
color: Colors.blue,
apiURL:
"https://asia-northeast1-mokkon-wholesale-dev.cloudfunctions.net/APIOK",
reportURL: "http://petrok-dev.mokkon.com:8080",
reportProjectID: "prod",
apiURL: "https://asia-northeast1-fcs-prod1.cloudfunctions.net/API",
reportURL: "http://petrok.mokkon.com:8092",
reportProjectID: "fcs-prod",
level: Level.ALL);
runApp(App());
}