Skip to content

Commit ad9127b

Browse files
committed
format
1 parent 6088e34 commit ad9127b

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

lib/view/pages/privacy/house_keeping_page.dart

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -281,7 +281,8 @@ class _TrashButton extends StatelessWidget {
281281
child: OutlinedButton(
282282
style: OutlinedButton.styleFrom(padding: const EdgeInsets.all(0)),
283283
onPressed: onPressed,
284-
child: Icon(YaruIcons.trash, color: Theme.of(context).colorScheme.error),
284+
child:
285+
Icon(YaruIcons.trash, color: Theme.of(context).colorScheme.error),
285286
),
286287
);
287288
}

lib/view/selectable_svg_image.dart

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,9 @@ class SelectableSvgImage extends StatelessWidget {
3434
borderRadius: BorderRadius.circular(4),
3535
child: SvgPicture.asset(
3636
path,
37-
color:
38-
selected ? selectedColor : Theme.of(context).colorScheme.background,
37+
color: selected
38+
? selectedColor
39+
: Theme.of(context).colorScheme.background,
3940
colorBlendMode: selected ? BlendMode.srcIn : BlendMode.color,
4041
height: height,
4142
),

0 commit comments

Comments
 (0)