add contact

This commit is contained in:
2020-09-04 15:30:10 +06:30
parent acfab08198
commit 9a76a36883
187 changed files with 1257 additions and 616 deletions

View File

@@ -1,7 +1,6 @@
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';
@@ -9,9 +8,7 @@ void main() {
Config(
flavor: Flavor.DEV,
color: Colors.blue,
apiURL: "https://localhost:7777",
reportURL: "http://petrok-dev.mokkon.com:8080",
reportProjectID: "dev",
apiURL: "http://192.168.1.155:7777",
level: Level.ALL);
runApp(App());
}