10 lines
322 B
Dart
10 lines
322 B
Dart
|
import 'package:flutter/material.dart';
|
||
|
|
||
|
class Constants{
|
||
|
static const primaryColor = Color(0xff3CB371);
|
||
|
static const secondaryTextColor = Color(0xff8F9BB3);
|
||
|
static String noInternet = "No internet connection.Please check your internet connection before retrying";
|
||
|
static const imgUrl = "https://medcify.app/";
|
||
|
}
|
||
|
|