atualização

This commit is contained in:
Carlos Correia
2026-03-05 18:08:06 +00:00
parent ebca3cfdce
commit 6931d6ada2
18 changed files with 725 additions and 2191 deletions

View File

@@ -2,7 +2,6 @@ import 'package:flutter/material.dart';
import 'screens/inicial_screen.dart';
import 'constants/app_strings.dart';
import 'services/supabase_service.dart';
import 'constants/app_constants.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
@@ -38,7 +37,9 @@ class MyApp extends StatelessWidget {
//
// This works for code too, not just values: Most code changes can be
// tested with just a hot reload.
colorScheme: .fromSeed(seedColor: Colors.deepPurple),
colorScheme: ColorScheme.fromSeed(
seedColor: Colors.white.withValues(alpha: 0.1),
),
),
home: const InicialScreen(),
);