Push Inicial

This commit is contained in:
Carlos Correia
2026-05-13 15:39:07 +01:00
parent 6dab717942
commit b2b0323804
132 changed files with 6553 additions and 0 deletions

13
lib/supabase_config.dart Normal file
View File

@@ -0,0 +1,13 @@
import 'package:supabase_flutter/supabase_flutter.dart';
class SupabaseConfig {
static const String supabaseUrl = 'https://ihgedtliybmujrpaswux.supabase.co';
static const String supabaseAnonKey =
'sb_publishable_JCEqyxh6nTfgx7OUnxrW_A_FjDO29Th';
static Future<void> initialize() async {
await Supabase.initialize(url: supabaseUrl, anonKey: supabaseAnonKey);
}
static SupabaseClient get client => Supabase.instance.client;
}