Add header to PostThread view; update navigation to include stacking so that each tab maintains its own browsing history
This commit is contained in:
parent
28dbc5f5e6
commit
29ed3d2ecf
17 changed files with 128 additions and 81 deletions
7
src/view/lib/assets.native.ts
Normal file
7
src/view/lib/assets.native.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import {ImageSourcePropType} from 'react-native'
|
||||
|
||||
export const AVIS: Record<string, ImageSourcePropType> = {
|
||||
'alice.com': require('../../../public/img/alice.jpg'),
|
||||
'bob.com': require('../../../public/img/bob.jpg'),
|
||||
'carla.com': require('../../../public/img/carla.jpg'),
|
||||
}
|
7
src/view/lib/assets.ts
Normal file
7
src/view/lib/assets.ts
Normal file
|
@ -0,0 +1,7 @@
|
|||
import {ImageSourcePropType} from 'react-native'
|
||||
|
||||
export const AVIS: Record<string, ImageSourcePropType> = {
|
||||
'alice.com': {uri: '/img/alice.jpg'},
|
||||
'bob.com': {uri: '/img/bob.jpg'},
|
||||
'carla.com': {uri: '/img/carla.jpg'},
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue