ai/at
1
0

fix ios patch refact

This commit is contained in:
2026-03-12 23:07:45 +09:00
parent 669f529481
commit 00b1b5ce1e
21 changed files with 344 additions and 546 deletions

17
ios/patching/Logo.tsx Normal file
View File

@@ -0,0 +1,17 @@
import {forwardRef} from 'react'
import {Image} from 'expo-image'
import {flatten} from '#/alf'
export const Logo = forwardRef(function LogoImpl(props: any, ref) {
const {width, style} = props
// @ts-ignore
const size = parseInt(width || 32, 10)
return (
<Image
source={require('../../../assets/logo.png')}
style={[{width: size, height: size}, flatten(style)]}
contentFit="contain"
accessibilityLabel="Logo"
/>
)
})