clean up round 1

remove fast-image, switched to all image
cleaned up icons
added fading splash page
This commit is contained in:
austinried
2021-08-22 17:44:42 +09:00
parent cb824f76ca
commit 1508a35a76
35 changed files with 134 additions and 95 deletions

23
app/styles/icons.ts Normal file
View File

@@ -0,0 +1,23 @@
export type OutlineFillIcon = {
outline: number
fill: number
}
export const bottomTabIcons: Record<string, OutlineFillIcon> = {
home: {
outline: require('@res/icons/home.png'),
fill: require('@res/icons/home-fill.png'),
},
library: {
outline: require('@res/icons/library.png'),
fill: require('@res/icons/library-fill.png'),
},
search: {
outline: require('@res/icons/search.png'),
fill: require('@res/icons/search-fill.png'),
},
settings: {
outline: require('@res/icons/settings.png'),
fill: require('@res/icons/settings-fill.png'),
},
}