Atualização geral de optimazação e desing

This commit is contained in:
Carlos Correia
2026-07-07 11:41:15 +01:00
parent e8afe36cd2
commit a8e04ceeb2
37 changed files with 1688 additions and 2900 deletions

View File

@@ -1,10 +1,16 @@
import 'package:firebase_core/firebase_core.dart';
import 'package:flutter/material.dart';
import 'package:supabase_flutter/supabase_flutter.dart';
import 'dart:async';
import 'gates/debug_launch_gate.dart';
const String supabaseUrl = 'https://mannjismlhlwaqqqnvog.supabase.co';
const String supabaseAnonKey =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6Im1hbm5qaXNtbGhsd2FxcXFudm9nIiwicm9sZSI6ImFub24iLCJpYXQiOjE3Nzk3MjU3MjEsImV4cCI6MjA5NTMwMTcyMX0.hF5tD1n7t_WSDLIesu1xcBHhzHouAVUCP8tUDDwUmDw';
SupabaseClient get supabase => Supabase.instance.client;
Future<void> main() async {
WidgetsFlutterBinding.ensureInitialized();
@@ -14,7 +20,7 @@ Future<void> main() async {
};
runZonedGuarded(() async {
await Firebase.initializeApp();
await Supabase.initialize(url: supabaseUrl, publishableKey: supabaseAnonKey);
runApp(const MyApp());
}, (error, stack) {
debugPrint('UNCAUGHT: $error');