feat: ExpenseItem on Home Screen
This commit is contained in:
parent
0f9783c292
commit
da58edc1da
5 changed files with 140 additions and 5 deletions
18
constants/theme.ts
Normal file
18
constants/theme.ts
Normal 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}
|
||||
Reference in a new issue