remove debugging buttons
Some checks failed
xiao_pet_tracker / semantic-pull-request (push) Failing after 0s
xiao_pet_tracker / build (push) Failing after 0s
xiao_pet_tracker / spell-check (push) Failing after 0s

This commit is contained in:
2025-06-27 21:39:07 +02:00
parent 7aa7f7f5f6
commit 6f785db0be

View File

@@ -42,24 +42,6 @@ class ConnectedView extends StatelessWidget {
},
child: const Text('Disconnect'),
),
const SizedBox(
height: 48,
),
ElevatedButton(
onPressed: () {
context.read<XiaoConnectorCubit>().debug();
},
child: const Text('DEBUG'),
),
const SizedBox(
height: 48,
),
ElevatedButton(
onPressed: () {
context.read<XiaoConnectorCubit>().setCapturing(on: true);
},
child: const Text('CAPTURE'),
),
],
),
),