From e576fb43ac5cedd76b9628777cde14b7de3e29b6 Mon Sep 17 00:00:00 2001 From: LINUX-PC Date: Sun, 28 Apr 2019 19:32:41 +0200 Subject: [PATCH] Updated row item --- lib/src/row_item.dart | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/src/row_item.dart b/lib/src/row_item.dart index 19a91b1..a678036 100644 --- a/lib/src/row_item.dart +++ b/lib/src/row_item.dart @@ -6,9 +6,9 @@ import 'package:flutter/material.dart'; /// the [negative] color when it's FALSE, and when its value is considered NULL, /// it will pick the [empty] color. class IconColor { - static const Color positive = Color(0xFF4CAF50); - static const Color negative = Color(0xFFF44336); - static const Color empty = Color(0xFF607D8B); + static const Color positive = Colors.green; + static const Color negative = Colors.red; + static const Color empty = Colors.blueGrey; } /// ROW ITEM WIDGET