31 lines
978 B
Dart
31 lines
978 B
Dart
|
import 'dart:ui';
|
||
|
|
||
|
import 'package:flutter/material.dart';
|
||
|
import 'package:flutter/services.dart';
|
||
|
|
||
|
class Constants {
|
||
|
static Color k2color = Color.fromARGB(255, 0, 71, 132);
|
||
|
static Color k2color1 = Color.fromARGB(255, 0, 71, 132);
|
||
|
|
||
|
static Color cardtext = Colors.transparent;
|
||
|
static Color cardtextdark = Colors.transparent;
|
||
|
|
||
|
static const Color bgcolor = Color(0xFFF2F3F8);
|
||
|
static Color bgcolor2 = const Color.fromARGB(255, 0, 112, 184);
|
||
|
|
||
|
static Color k2color11 = Colors.white;
|
||
|
|
||
|
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.2.143:8000/api";
|
||
|
|
||
|
// static const url = "http://192.168.21.50:8000/api";
|
||
|
|
||
|
//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";
|
||
|
}
|