small fix.

pull/190/head
Elham Rababah 5 years ago
parent af77d35ce3
commit 81352c2b0e

@ -1,3 +1,5 @@
import 'package:flutter/material.dart';
const MAX_SMALL_SCREEN = 660; const MAX_SMALL_SCREEN = 660;
const ONLY_NUMBERS = "[0-9]"; const ONLY_NUMBERS = "[0-9]";
const ONLY_LETTERS = "[a-zA-Z &'\"]"; const ONLY_LETTERS = "[a-zA-Z &'\"]";
@ -142,4 +144,5 @@ const TIMER_MIN = 10;
class AppGlobal { class AppGlobal {
static var CONTEX; static var CONTEX;
static Color appPrimaryColor =Color(0xFFB9382C);
} }

@ -1,3 +1,4 @@
import 'package:doctor_app_flutter/config/config.dart';
import 'package:doctor_app_flutter/util/translations_delegate_base.dart'; import 'package:doctor_app_flutter/util/translations_delegate_base.dart';
import 'package:doctor_app_flutter/widgets/shared/Text.dart'; import 'package:doctor_app_flutter/widgets/shared/Text.dart';
import 'package:doctor_app_flutter/widgets/shared/app_buttons_widget.dart'; import 'package:doctor_app_flutter/widgets/shared/app_buttons_widget.dart';
@ -32,7 +33,7 @@ class SubjectivePage extends StatelessWidget {
variant: "bodyText", variant: "bodyText",
bold: true, bold: true,
color: Colors.black), color: Colors.black),
Icon(FontAwesomeIcons.asterisk, color: Color(0xFFB9382C), Icon(FontAwesomeIcons.asterisk, color: AppGlobal.appPrimaryColor,
size: 12, size: 12,
) )
], ],

Loading…
Cancel
Save