fixed nullable mess with editor ids
This commit is contained in:
@@ -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),
|
||||
],
|
||||
),
|
||||
],
|
||||
),
|
||||
|
||||
Reference in New Issue
Block a user