TUDO
This commit is contained in:
14
lib/constants/app_colors.dart
Normal file
14
lib/constants/app_colors.dart
Normal 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);
|
||||
}
|
||||
10
lib/constants/app_constants.dart
Normal file
10
lib/constants/app_constants.dart
Normal 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';
|
||||
}
|
||||
8
lib/constants/app_strings.dart
Normal file
8
lib/constants/app_strings.dart
Normal 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';
|
||||
}
|
||||
Reference in New Issue
Block a user