added send functionality to icon.

This commit is contained in:
Joshua
2024-07-10 13:44:16 -06:00
parent 097b99e0e6
commit 711991c7bf
13 changed files with 363 additions and 281 deletions
+30 -22
View File
@@ -1,37 +1,45 @@
import 'package:flutter/material.dart';
class AppTheme {
static const primary = Colors.deepPurple;
static const secondary = Colors.deepPurpleAccent;
static const tertiary = Colors.white;
static const alternate = Colors.deepPurple;
static const darkest = Color.fromARGB(255, 45, 45, 145);
static const dark = Color.fromARGB(255, 81, 81, 196);
static const medium = Color.fromARGB(255, 107, 107, 201);
static const light = Color.fromARGB(255, 155, 155, 255);
static const lightest = Color.fromARGB(255, 172, 175, 255);
static const accent = Color.fromARGB(255, 255, 113, 0);
static const accent2 = Color.fromARGB(255, 255, 164, 79);
static const accent1 = Colors.amber;
static const accent4 = Colors.amber;
static const primaryBackground = darkest;
static const secondaryBackground = medium;
static const primaryTextColor = darkest;
static const primaryText = TextStyle(color: primaryTextColor, fontSize: 16);
static const secondaryText = dark;
static const primaryBackground = Colors.deepPurpleAccent;
static const secondaryBackground = Colors.deepPurple;
static const accent1 = lightest;
static const accent4 = accent2;
static const primary = dark;
static const secondary = medium;
static const tertiary = light;
static const alternate = lightest;
static const primaryTextColor = Colors.white;
static const primaryText = TextStyle(color: primaryTextColor, fontSize: 12);
static const secondaryText = Colors.white;
static const bodyLarge = TextStyle(color: Colors.white, fontSize: 24);
static const bodyMedium = TextStyle(color: Colors.white, fontSize: 12);
static const bodySmall = TextStyle(color: Colors.white, fontSize: 10);
static const bodyLarge = TextStyle(color: light, fontSize: 24, fontWeight: FontWeight.bold);
static const bodyMedium = TextStyle(color: lightest, fontSize: 16);
static const bodySmall = TextStyle(color: light, fontSize: 12);
static const error = Colors.red;
static const info = Colors.grey;
static const displaySmall = TextStyle(color: Colors.white, fontSize: 12);
static const displayLarge = TextStyle(color: darkest, fontSize: 24, fontWeight: FontWeight.bold);
static const displayMedium = TextStyle(color: dark, fontSize: 16, fontWeight: FontWeight.bold);
static const displaySmall = TextStyle(color: lightest, fontSize: 12, fontWeight: FontWeight.bold);
static const labelLarge = TextStyle(color: Colors.black, fontSize: 24);
static const labelMedium = TextStyle(color: Colors.grey, fontSize: 16);
static const labelSmall = TextStyle(color: Colors.grey, fontSize: 12);
static const labelLarge = TextStyle(color: darkest, fontSize: 24, fontWeight: FontWeight.bold);
static const labelMedium = TextStyle(color: dark, fontSize: 16, fontWeight: FontWeight.bold);
static const labelSmall = TextStyle(color: medium, fontSize: 12, fontWeight: FontWeight.bold);
static const headlineLarge = TextStyle(color: Colors.blue, fontWeight: FontWeight.bold);
static const headlineMedium = TextStyle(color: Colors.blue, fontWeight: FontWeight.bold);
static const headlineSmall = TextStyle(color: Colors.blue, fontWeight: FontWeight.bold);
static const headlineLarge = TextStyle(color: medium, fontWeight: FontWeight.bold);
static const headlineMedium = TextStyle(color: light, fontWeight: FontWeight.bold);
static const headlineSmall = TextStyle(color: lightest, fontWeight: FontWeight.bold);
static const titleLarge = TextStyle(fontFamily: 'Outfit', letterSpacing: 0, fontSize: 24);
static const titleSmall = TextStyle(fontFamily: 'Outfit', letterSpacing: 0, fontSize: 16);