Finish making account registration possible

This commit is contained in:
zontreck 2024-05-16 00:42:40 -07:00
parent f37af74687
commit fb6928cb30
9 changed files with 375 additions and 40 deletions

View file

@ -8,7 +8,7 @@ class Constants {
static const DRAWER_COLOR = Color.fromARGB(148, 0, 97, 97);
static const PORTFOLIO_CARD_COLOR = Color.fromARGB(255, 0, 71, 97);
static const VERSION = "1.0.051524.1622";
static const VERSION = "Version 1.0.051524.2243";
static const COPYRIGHT = "Copyright 2024 - Tara Piccari. All rights Reserved";
static const CLIENTPSK =
"f5c6caf3efe1ec5aa4b7c572f92aa14782b7be34b4c7844fa9c6d47fdf94246";
@ -16,6 +16,8 @@ class Constants {
static const SERVICES_JSON =
"https://raw.githubusercontent.com/AriasCreations/AriasCreations/main/services.json";
static const ALLOW_ANY_LAST_NAME = false;
static Future<Map<String, dynamic>> pullServicesJson() async {
Settings settings = Settings();
var reply = await settings.dio.get(SERVICES_JSON);