Added working edit transaction
This commit is contained in:
+55
-3
@@ -1,4 +1,4 @@
|
||||
import 'dart:ui';
|
||||
import 'package:flutter/material.dart';
|
||||
|
||||
class Styles {
|
||||
// Theme Colors
|
||||
@@ -9,7 +9,7 @@ class Styles {
|
||||
static const Color seaweedGreen = Color(0xFF86BA90);
|
||||
static const Color emptyBarGrey = Color(0xFFC8C8C8);
|
||||
static const Color lavender = Color(0xFFB8B8FF);
|
||||
static const Color sand = Color(0xFFD9D9D9);
|
||||
static const Color washedStone = Color(0xFFD9D9D9);
|
||||
|
||||
// Income Colors
|
||||
static const Color incomeBlue = Color(0xFFB8B8FF);
|
||||
@@ -17,5 +17,57 @@ class Styles {
|
||||
|
||||
// Expenses Colors
|
||||
static const Color expensesOrange = Color(0xFFFA824C);
|
||||
static const Color expensesRed = Color(0xFF9E0000);
|
||||
static const Color expensesRed = Color(0xFFC73E1D);
|
||||
|
||||
static const List<Color> curatedColors = [
|
||||
Color(0xFF6D326D),
|
||||
Color(0xFFE58F65),
|
||||
Color(0xFFD3E298),
|
||||
Color(0xFFFD96A9),
|
||||
Color(0xFF4F7CAC),
|
||||
Color(0xFFE4B4C2),
|
||||
Color(0xFFFFB8D1),
|
||||
Color(0xFFDDFDFE),
|
||||
Color(0xFFD7BE82),
|
||||
Color(0xFFD4C5C7),
|
||||
Color(0xFF8EB8E5),
|
||||
Color(0xFF9893DA),
|
||||
Color(0xFF99AA38),
|
||||
Color(0xFFA7E2E3),
|
||||
Color(0xFFF7B2BD),
|
||||
Color(0xFFFEDC97),
|
||||
Color(0xFFC28CAE),
|
||||
Color(0xFFF1BF98),
|
||||
Color(0xFFD1BCE3),
|
||||
Color(0xFFBDC667),
|
||||
Color(0xFFFFB563)
|
||||
];
|
||||
|
||||
// Widget Styles
|
||||
static BoxDecoration boxLavenderBubble = BoxDecoration(
|
||||
color: Styles.lavender,
|
||||
borderRadius: BorderRadius.circular(20.0),
|
||||
);
|
||||
|
||||
static InputDecoration inputLavenderBubble({String? labelText}) =>
|
||||
InputDecoration(
|
||||
contentPadding:
|
||||
const EdgeInsets.symmetric(vertical: 8.0, horizontal: 8.0),
|
||||
labelText: labelText,
|
||||
focusColor: Styles.blushingPink,
|
||||
hoverColor: Styles.blushingPink,
|
||||
fillColor: Styles.lavender,
|
||||
border: const OutlineInputBorder(
|
||||
borderSide: BorderSide.none,
|
||||
),
|
||||
);
|
||||
|
||||
static const Color dialogColor = Styles.purpleNurple;
|
||||
|
||||
static RoundedRectangleBorder dialogShape = RoundedRectangleBorder(
|
||||
borderRadius: BorderRadius.circular(20.0),
|
||||
);
|
||||
|
||||
// Sizing Styles
|
||||
static const dialogScreenWidthFactor = 0.75;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user