1
0
mirror of https://github.com/tooot-app/app synced 2025-06-05 22:19:13 +02:00

Remove all FastImage

This commit is contained in:
Zhiyuan Zheng
2021-03-19 21:44:52 +01:00
parent e620754c15
commit 15cf29d952
8 changed files with 21 additions and 19 deletions

View File

@ -13,8 +13,7 @@ import {
} from '@utils/slices/instancesSlice'
import { useTheme } from '@utils/styles/ThemeManager'
import React, { useCallback, useMemo } from 'react'
import { Platform } from 'react-native'
import FastImage from 'react-native-fast-image'
import { Image, Platform } from 'react-native'
import { useSelector } from 'react-redux'
import TabLocal from './Tabs/Local'
import TabMe from './Tabs/Me'
@ -69,7 +68,7 @@ const ScreenTabs = React.memo(
return <Icon name='Bell' size={size} color={color} />
case 'Tab-Me':
return instanceActive !== -1 ? (
<FastImage
<Image
source={{
uri: instanceAccount?.avatarStatic
}}