temporarily update Image props

This commit is contained in:
Pavel Prichodko 2023-03-13 20:24:29 +01:00
parent ad4a2ad296
commit 4491ecaaf7
No known key found for this signature in database
GPG Key ID: 0EB8D75C775AB6F1
1 changed files with 3 additions and 5 deletions

View File

@ -1,15 +1,12 @@
import { forwardRef } from 'react' import { forwardRef } from 'react'
import { isWeb, setupReactNative, styled } from '@tamagui/core' import { setupReactNative, styled } from '@tamagui/core'
import { Image as RNImage } from 'react-native' import { Image as RNImage } from 'react-native'
import type { GetProps } from '@tamagui/core' import type { GetProps } from '@tamagui/core'
import type { Ref } from 'react' import type { Ref } from 'react'
import type { ImagePropsBase as RNImageProps } from 'react-native' import type { ImagePropsBase as RNImageProps } from 'react-native'
// TODO: this was used in @tamagui/image package. Why?
// import { focusableInputHOC } from '@tamagui/focusable'
setupReactNative({ setupReactNative({
Image: RNImage, Image: RNImage,
}) })
@ -54,7 +51,7 @@ const Image = (props: Props, ref: Ref<HTMLImageElement>) => {
const source = { const source = {
uri: src, uri: src,
...(isWeb && { width, height }), // ...(isWeb && { width, height }),
} }
return ( return (
@ -70,6 +67,7 @@ const Image = (props: Props, ref: Ref<HTMLImageElement>) => {
) )
} }
// TODO?: this was used in @tamagui/image package. Why?
// focusableInputHOC(Image) // focusableInputHOC(Image)
const _Image = Base.extractable(forwardRef(Image)) const _Image = Base.extractable(forwardRef(Image))