DiscoverModule/lib/contacts_module/constants.dart

32 lines
1.1 KiB
Dart
Raw Normal View History

2024-05-21 08:40:44 +00:00
import 'dart:ui';
2024-08-13 10:46:26 +00:00
import 'package:flutter/material.dart';
2024-08-30 12:24:54 +00:00
import 'package:flutter/services.dart';
2024-08-13 10:46:26 +00:00
2024-05-21 08:40:44 +00:00
class Constants {
2024-11-22 10:38:43 +00:00
static const Color k2color = Color.fromARGB(255, 0, 71, 132);
static const Color k2color1 = Color.fromARGB(255, 0, 71, 132);
static const Color profilecard = Color.fromARGB(255, 4, 104, 198);
static const Color btmcard = Color.fromARGB(2255, 251, 242, 242);
2024-08-13 10:46:26 +00:00
2024-08-19 08:44:44 +00:00
static Color cardtext = Colors.transparent;
2024-08-13 10:46:26 +00:00
static const Color bgcolor = Color(0xFFF2F3F8);
2024-11-22 10:38:43 +00:00
static const Color bgwhitecolor = Colors.white;
2024-07-05 08:48:29 +00:00
2024-11-22 10:38:43 +00:00
static Color bgcolor2 = const Color.fromARGB(255, 0, 112, 184);
2024-08-19 08:44:44 +00:00
2024-08-30 12:24:54 +00:00
static final Future<String> response =
rootBundle.loadString('assets/section.json');
static const Color tabbgColor = Color.fromARGB(255, 0, 112, 184);
2024-11-22 10:38:43 +00:00
static const url = "http://192.168.2.170:8000/api";
2024-10-07 12:41:28 +00:00
2024-11-22 10:38:43 +00:00
// static const url = "http://127.0.0.1:8000/api";
2024-10-07 12:41:28 +00:00
//static const url = 'http://192.168.2.143:8085/api';http://127.0.0.1:8001
//static const url = 'http://192.168.153.50:8082/api';192.168.21.50:8000
static const k2url = "http://192.168.2.130:8888/api";
2024-05-21 08:40:44 +00:00
}