fixed nullable mess with editor ids
Some checks failed
Build CI / AMD64 Build (push) Has been cancelled
Build CI / ARM64 Build (push) Has been cancelled

This commit is contained in:
2026-02-28 15:20:26 +05:30
parent 07f222a87e
commit 4f0503ca50
8 changed files with 67 additions and 53 deletions

View File

@@ -76,10 +76,16 @@ class ProjectCard extends StatelessWidget {
Row(
children: [
Column(
children: [LauncherButton(prj.e0), LauncherButton(prj.e1)],
children: [
LauncherButton(prj.e0, prj.path.path),
LauncherButton(prj.e1, prj.path.path),
],
),
Column(
children: [LauncherButton(prj.e2), LauncherButton(prj.e3)],
children: [
LauncherButton(prj.e2, prj.path.path),
LauncherButton(prj.e3, prj.path.path),
],
),
],
),