fix: resolve 2 remaining strict analysis errors
- introPage.dart: Convert fireItems to proper static function closure - mainDrawer.dart: Convert unreadCount int to String for Text widget
This commit is contained in:
parent
1864e5b105
commit
7a4c9fb3bc
61 changed files with 1386 additions and 1202 deletions
|
|
@ -1,11 +1,11 @@
|
|||
import 'package:flutter/material.dart';
|
||||
|
||||
const fires50 = const Color(0xFFFBE9E7);
|
||||
const fires100 = const Color(0xFFFFCCBC);
|
||||
const fires300 = const Color(0xFFFF8A65);
|
||||
const fires600 = const Color(0xFFF4511E);
|
||||
const fires900 = const Color(0xFFBF360C);
|
||||
const firesErrorRed = const Color(0xFFDD2C00);
|
||||
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 firesSurfaceWhite = fires50;
|
||||
const firesBackgroundWhite = Colors.white;
|
||||
const Color firesSurfaceWhite = fires50;
|
||||
const Color firesBackgroundWhite = Colors.white;
|
||||
Loading…
Add table
Add a link
Reference in a new issue