refactor: format

This commit is contained in:
edde746
2025-12-12 17:05:26 +01:00
parent b0ee43d8cd
commit 11461eefe5
47 changed files with 518 additions and 121 deletions
@@ -233,7 +233,12 @@ class _PlaylistDetailScreenState
Row(
mainAxisSize: MainAxisSize.min,
children: [
AppIcon(Symbols.auto_awesome_rounded, fill: 1, size: 12, color: Colors.blue[300]),
AppIcon(
Symbols.auto_awesome_rounded,
fill: 1,
size: 12,
color: Colors.blue[300],
),
const SizedBox(width: 4),
Text(
t.playlists.smartPlaylist,
+11 -2
View File
@@ -58,7 +58,11 @@ class _PlaylistItemCardState extends State<PlaylistItemCard> {
index: widget.index,
child: const Padding(
padding: EdgeInsets.only(right: 12),
child: AppIcon(Symbols.drag_indicator_rounded, fill: 1, color: Colors.grey),
child: AppIcon(
Symbols.drag_indicator_rounded,
fill: 1,
color: Colors.grey,
),
),
),
@@ -166,7 +170,12 @@ class _PlaylistItemCardState extends State<PlaylistItemCard> {
color: Colors.grey[850],
borderRadius: BorderRadius.circular(6),
),
child: const AppIcon(Symbols.movie_rounded, fill: 1, color: Colors.grey, size: 24),
child: const AppIcon(
Symbols.movie_rounded,
fill: 1,
color: Colors.grey,
size: 24,
),
);
}