style(app): остальные экраны под новый визуальный язык и форматирование
Доходы, ребалансировка, налоги, импорт, цели, здоровье данных, правила, транзакции, категории, cashflow, pending: новые виджеты и токены темы, dart format. Тесты подстроены под новые модели.
This commit is contained in:
@@ -52,14 +52,19 @@ class _DataQualityTile extends StatelessWidget {
|
||||
margin: const EdgeInsets.only(top: 4, right: 10),
|
||||
width: 10,
|
||||
height: 10,
|
||||
decoration: BoxDecoration(color: severityColor(row.severity), shape: BoxShape.circle),
|
||||
decoration: BoxDecoration(
|
||||
color: severityColor(row.severity),
|
||||
shape: BoxShape.circle,
|
||||
),
|
||||
),
|
||||
Expanded(
|
||||
child: Column(
|
||||
crossAxisAlignment: CrossAxisAlignment.start,
|
||||
children: [
|
||||
Text('${row.checkName} (${row.count})',
|
||||
style: Theme.of(context).textTheme.titleSmall),
|
||||
Text(
|
||||
'${row.checkName} (${row.count})',
|
||||
style: Theme.of(context).textTheme.titleSmall,
|
||||
),
|
||||
const SizedBox(height: 2),
|
||||
Text(row.detail),
|
||||
],
|
||||
|
||||
Reference in New Issue
Block a user