new settings panel for url pickup
All checks were successful
Release / meta (push) Successful in 12s
Release / linux-build (push) Successful in 7m42s
Release / android-build (push) Successful in 16m34s
Release / release-dev (push) Successful in 38s
Release / release-master (push) Successful in 37s

This commit is contained in:
2025-12-22 22:45:33 +00:00
parent dc5ed2567f
commit 950978b021
14 changed files with 322 additions and 43 deletions

View File

@@ -348,14 +348,11 @@ class _DashboardState extends State<Dashboard> {
return Row(
mainAxisSize: MainAxisSize.min,
children: [
...buttons
.map(
(btn) => Padding(
padding: const EdgeInsets.only(left: 8.0),
child: btn,
),
)
.toList(),
for (final btn in buttons)
Padding(
padding: const EdgeInsets.only(left: 8.0),
child: btn,
),
],
);
}