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-08-19 08:44:44 +00:00
|
|
|
static Color k2color = Color.fromARGB(255, 0, 71, 132);
|
2024-08-13 10:46:26 +00:00
|
|
|
static Color k2color1 = Color.fromARGB(255, 0, 71, 132);
|
|
|
|
|
2024-08-19 08:44:44 +00:00
|
|
|
static Color cardtext = Colors.transparent;
|
|
|
|
static Color cardtextdark = Colors.transparent;
|
|
|
|
|
2024-08-13 10:46:26 +00:00
|
|
|
static const Color bgcolor = Color(0xFFF2F3F8);
|
|
|
|
static Color bgcolor2 = const Color.fromARGB(255, 0, 112, 184);
|
2024-07-05 08:48:29 +00:00
|
|
|
|
2024-08-19 08:44:44 +00:00
|
|
|
static Color k2color11 = Colors.white;
|
|
|
|
|
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);
|
|
|
|
|
|
|
|
static const url = "http://192.168.21.50:8084/api";
|
|
|
|
//static const url = 'http://192.168.2.143:8085/api';
|
2024-07-19 08:45:14 +00:00
|
|
|
//static const url = 'http://192.168.153.50:8082/api';
|
2024-05-21 08:40:44 +00:00
|
|
|
}
|