This commit is contained in:
Carlos Correia
2026-03-04 15:54:24 +00:00
parent b405cfb93b
commit ebca3cfdce
147 changed files with 9168 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
import 'package:flutter/material.dart';
class AppColors {
// Background colors
static const Color background = Color.fromARGB(255, 49, 53, 77);
static const Color coral = Color(0xFFFF6B6B);
// Button colors
static const Color buttonColor = Color.fromARGB(255, 112, 112, 112);
static const Color white = Colors.white;
// Neutral colors
static const Color backgroundGrey = Color.fromARGB(255, 89, 89, 89);
}

View File

@@ -0,0 +1,10 @@
class AppConstants {
// Supabase Configuration
static const String supabaseUrl = 'https://kiltpvuchpinspggkzdj.supabase.co';
static const String supabaseAnonKey =
'eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJpc3MiOiJzdXBhYmFzZSIsInJlZiI6ImtpbHRwdnVjaHBpbnNwZ2dremRqIiwicm9sZSI6ImFub24iLCJpYXQiOjE3NzA4MjQ3NzcsImV4cCI6MjA4NjQwMDc3N30.h_63zAzHJELZufITa74-lM400lDb8B3jj3B-laebusQ';
// App Configuration
static const String appName = 'Run Vision Pro';
static const String appVersion = '1.0.0';
}

View File

@@ -0,0 +1,8 @@
class AppStrings {
// Initial screen
static const String registrar = 'Registrar';
static const String entrar = 'Entrar';
// Common
static const String appTitle = 'Run Vision Pro';
}