warning icon

This commit is contained in:
2026-04-23 02:13:36 +02:00
parent c7ed2f16c1
commit 003604444c

View File

@@ -69,7 +69,7 @@ Future<void> _showPillFeedback(
_FeedbackKind.error => ( _FeedbackKind.error => (
const Color(0xFFFDE8E8), const Color(0xFFFDE8E8),
const Color(0xFFE57373), const Color(0xFFE57373),
Icons.close, Icons.warning,
), ),
_FeedbackKind.info => ( _FeedbackKind.info => (
const Color(0xFFE3F2FD), const Color(0xFFE3F2FD),
@@ -155,11 +155,7 @@ Future<void> _showPillFeedback(
color: circleColor, color: circleColor,
shape: BoxShape.circle, shape: BoxShape.circle,
), ),
child: Icon( child: Icon(iconData, color: Colors.white, size: 38),
iconData,
color: Colors.white,
size: 38,
),
), ),
), ),
), ),