Improvements to the feature explainer, including intro screen and screenshot of scenes

This commit is contained in:
Paul Frazee 2022-11-14 13:12:29 -06:00
parent 210082be93
commit 837ec8308a
4 changed files with 36 additions and 3 deletions

View file

@ -1,3 +1,4 @@
import {ImageSourcePropType} from 'react-native'
export const DEF_AVATAR: ImageSourcePropType = require('../../../public/img/default-avatar.jpg')
export const SCENE_EXPLAINER: ImageSourcePropType = require('../../../public/img/scene-explainer.jpg')

View file

@ -1,3 +1,6 @@
import {ImageSourcePropType} from 'react-native'
export const DEF_AVATAR: ImageSourcePropType = {uri: '/img/default-avatar.jpg'}
export const SCENE_EXPLAINER: ImageSourcePropType = {
uri: '/img/scene-explainer.jpg',
}