chore: Make connection problem color orange
This commit is contained in:
parent
ba61e3c164
commit
959d75fb9d
2 changed files with 4 additions and 4 deletions
|
|
@ -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…
Add table
Reference in a new issue