format files

This commit is contained in:
zjs81
2026-06-13 00:39:13 -07:00
parent 7da4e68384
commit becfbedc99
26 changed files with 1040 additions and 741 deletions
+2 -8
View File
@@ -15,10 +15,7 @@ class UnreadDivider extends StatelessWidget {
child: Row(
children: [
Expanded(
child: Container(
height: 1,
color: color.withValues(alpha: 0.25),
),
child: Container(height: 1, color: color.withValues(alpha: 0.25)),
),
const SizedBox(width: 10),
Container(
@@ -39,10 +36,7 @@ class UnreadDivider extends StatelessWidget {
),
const SizedBox(width: 10),
Expanded(
child: Container(
height: 1,
color: color.withValues(alpha: 0.25),
),
child: Container(height: 1, color: color.withValues(alpha: 0.25)),
),
],
),