Atualização de gauge

This commit is contained in:
Carlos Correia
2026-07-14 18:23:03 +01:00
parent 4fcf3a475a
commit 5b25d9bef4
22 changed files with 973 additions and 1441 deletions

12
lib/_debug_harness.dart Normal file
View File

@@ -0,0 +1,12 @@
import 'package:flutter/material.dart';
import 'logged_home.dart';
class DebugHarness extends StatelessWidget {
const DebugHarness({super.key});
@override
Widget build(BuildContext context) {
return const LoggedHomeScreen();
}
}