build: Upgrade to flutter 3.41.1

This commit is contained in:
krille-chan 2026-02-18 17:03:48 +01:00
commit 8381281086
No known key found for this signature in database
5 changed files with 168 additions and 146 deletions

View file

@ -31,7 +31,7 @@ class ChatAppBarListTile extends StatelessWidget {
onTap: onTap,
child: Row(
children: [
if (leading != null) leading,
?leading,
Expanded(
child: Padding(
padding: const EdgeInsets.symmetric(horizontal: 4.0),
@ -56,7 +56,7 @@ class ChatAppBarListTile extends StatelessWidget {
),
),
),
if (trailing != null) trailing,
?trailing,
],
),
),