Правки + иконка

This commit is contained in:
2025-04-01 22:38:36 +03:00
parent b1aefa9f11
commit fb7ff84087
87 changed files with 1653 additions and 1720 deletions

View File

@@ -37,6 +37,17 @@ class _SandboxScreenState extends State<SandboxScreen> {
const HSpace(8),
_debugBox(),
const HSpace(8),
PrimaryButton(
child: const Text('Логи'),
onTap: () {
Navigator.of(context).push(
MaterialPageRoute<dynamic>(
builder:
(BuildContext context) => TalkerScreen(talker: talker),
),
);
},
),
],
),
);
@@ -67,17 +78,6 @@ class _SandboxScreenState extends State<SandboxScreen> {
},
child: const Text('Open Db Viewer'),
),
PrimaryButton(
child: const Text('Логи'),
onTap: () {
Navigator.of(context).push(
MaterialPageRoute<dynamic>(
builder:
(BuildContext context) => TalkerScreen(talker: talker),
),
);
},
),
],
),
);