26 lines
823 B
Dart
26 lines
823 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.21.50:8084/api";
|
|
//static const url = 'http://192.168.2.143:8085/api';
|
|
//static const url = 'http://192.168.153.50:8082/api';
|
|
}
|