From 255fff34e9f227f95879ed7b902b686daf5e1aad Mon Sep 17 00:00:00 2001 From: Chris Bobbe Date: Fri, 10 Nov 2023 10:49:23 -0500 Subject: [PATCH] widgets: Remove unnecessary EdgeInsetsDirectional with symmetric start/end This doesn't seem likely to become asymmetrical, and perhaps we can save a bit of computation with this. --- lib/widgets/unread_count_badge.dart | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/widgets/unread_count_badge.dart b/lib/widgets/unread_count_badge.dart index 241b878a4e..6a05b06d48 100644 --- a/lib/widgets/unread_count_badge.dart +++ b/lib/widgets/unread_count_badge.dart @@ -66,7 +66,7 @@ class UnreadCountBadge extends StatelessWidget { color: getBackgroundColor(), ), child: Padding( - padding: const EdgeInsetsDirectional.fromSTEB(4, 0, 4, 1), + padding: const EdgeInsets.fromLTRB(4, 0, 4, 1), child: Text( style: const TextStyle( fontFamily: 'Source Sans 3',