Use RN Image for local images instead of FastImage (#7329)

This commit is contained in:
Daniel Espino García
2023-05-10 15:44:10 +02:00
committed by GitHub
parent 4aa4c0a7cb
commit 0a04be7448
10 changed files with 53 additions and 24 deletions

View File

@@ -2,8 +2,7 @@
// See LICENSE.txt for license information.
import type CustomEmojiModel from '@typings/database/models/servers/custom_emoji';
import type {StyleProp, TextStyle} from 'react-native';
import type {ImageStyle} from 'react-native-fast-image';
import type {StyleProp, TextStyle, ImageStyle} from 'react-native';
// The intersection of the image styles and text styles
type ImageStyleUniques = Omit<ImageStyle, keyof(TextStyle)>