- introPage.dart: Convert fireItems to proper static function closure - mainDrawer.dart: Convert unreadCount int to String for Text widget
11 lines
No EOL
387 B
Dart
11 lines
No EOL
387 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
const Color fires50 = Color(0xFFFBE9E7);
|
|
const Color fires100 = Color(0xFFFFCCBC);
|
|
const Color fires300 = Color(0xFFFF8A65);
|
|
const Color fires600 = Color(0xFFF4511E);
|
|
const Color fires900 = Color(0xFFBF360C);
|
|
const Color firesErrorRed = Color(0xFFDD2C00);
|
|
|
|
const Color firesSurfaceWhite = fires50;
|
|
const Color firesBackgroundWhite = Colors.white; |