refactor: ignore bubble gradient when using system high contrast mode

pull/1984/head
Christian Kußowski 4 months ago
parent 5a7a76ff3a
commit 36bcfd8f9b
No known key found for this signature in database
GPG Key ID: E067ECD60F1A0652

@ -461,8 +461,10 @@ class Message extends StatelessWidget {
clipBehavior: Clip.antiAlias,
child: BubbleBackground(
colors: colors,
ignore:
noBubble || !ownMessage,
ignore: noBubble ||
!ownMessage ||
MediaQuery.of(context)
.highContrast,
scrollController:
scrollController,
child: Container(

Loading…
Cancel
Save