29 lines
813 B
Dart
29 lines
813 B
Dart
// ignore_for_file: constant_identifier_names
|
|
|
|
/*
|
|
this is constant pages
|
|
*/
|
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
const String APP_NAME = 'Mobile DR';
|
|
|
|
// color for apps
|
|
const Color PRIMARY_COLOR = Color(0xFF07ac12);
|
|
const Color ASSENT_COLOR = Color(0xFFe75f3f);
|
|
|
|
const Color CHARCOAL = Color(0xFF515151);
|
|
const Color BLACK_GREY = Color(0xff777777);
|
|
const Color SOFT_GREY = Color(0xFFaaaaaa);
|
|
const Color SOFT_BLUE = Color(0xff01aed6);
|
|
|
|
const String ERROR_OCCURED = 'Error occured, please try again later';
|
|
|
|
const int LIMIT_PAGE = 8;
|
|
|
|
const String GLOBAL_URL = 'https://ijtechnology.net/assets/images/api/devkit';
|
|
//const String GLOBAL_URL = 'http://192.168.0.4/devkit';
|
|
//const String GLOBAL_URL = 'http://192.168.100.9/devkit';
|
|
|
|
const String LOCAL_IMAGES_URL = 'assets/images';
|