chore: Make connection problem color orange

pull/1815/head
krille-chan 2 months ago
parent ba61e3c164
commit 959d75fb9d
No known key found for this signature in database

@ -52,7 +52,7 @@ class ChatInputRow extends StatelessWidget {
height: height,
child: TextButton(
style: TextButton.styleFrom(
foregroundColor: theme.colorScheme.error,
foregroundColor: Colors.orange,
),
onPressed: controller.deleteErrorEventsAction,
child: Row(

@ -60,7 +60,7 @@ class ChatListHeader extends StatelessWidget implements PreferredSizeWidget {
: status.calcLocalizedString(context),
hintStyle: TextStyle(
color: status.error != null
? theme.colorScheme.error
? Colors.orange
: theme.colorScheme.onPrimaryContainer,
fontWeight: FontWeight.normal,
),
@ -88,8 +88,8 @@ class ChatListHeader extends StatelessWidget implements PreferredSizeWidget {
strokeWidth: 2,
value: status.progress,
valueColor: status.error != null
? AlwaysStoppedAnimation<Color>(
theme.colorScheme.error,
? const AlwaysStoppedAnimation<Color>(
Colors.orange,
)
: null,
),

Loading…
Cancel
Save