feat: ExpenseItem on Home Screen

This commit is contained in:
Jakob Stornig 2023-12-04 01:59:34 +01:00
parent 0f9783c292
commit da58edc1da
5 changed files with 140 additions and 5 deletions

18
constants/theme.ts Normal file
View file

@ -0,0 +1,18 @@
const SIZES = {
small: 12,
normal: 17,
large: 20,
xxLarge: 30
}
const SHADOWS = {
light: {
shadowColor: "#ADB7C3",
shadowRadius: 20,
elevation: 10,
shadowOpacity: 0.6,
shadowOffset: { width: 1, height: 1 }
}
}
export {SIZES, SHADOWS}