first working prototype
Some checks failed
Build CI / Build (push) Has been cancelled

This commit is contained in:
2026-02-11 22:59:25 +05:30
parent 6a10685033
commit 73827ea62c
13 changed files with 281 additions and 32 deletions

View File

@@ -15,13 +15,16 @@ class EditorCard extends StatelessWidget {
GlobalModel gm = Provider.of<GlobalModel>(context);
final Editor edt = gm.nthEdt(id);
return YaruBanner(
onTap: () {},
onTap: () {
gm.delEdt(id);
},
child: Center(
child: Column(
mainAxisAlignment: .start,
crossAxisAlignment: .start,
children: [
Text("${edt.name}", style: TextStyle(fontSize: 30)),
Text("${edt.command}"),
Text("${edt.commandTemplate}"),
],
),