import { ScrollView as RNScrollView } from 'react-native'; import { styled, useStyled, propertyTokenMap } from '@gluestack-style/react'; const StyledRoot = styled( RNScrollView, {}, { resolveProps: ['contentContainerStyle'], }, { propertyResolver: { contentContainerStyle: (rawValue, resolver) => { // eslint-disable-next-line react-hooks/rules-of-hooks const aliases: any = useStyled()?.config?.aliases; const newValue = {} as Record; Object.entries(rawValue).forEach(([key, value]: any) => { if (Object.hasOwn(aliases, key)) { newValue[`${aliases[key]}`] = resolver( value, //@ts-ignore propertyTokenMap[aliases[key]] ); } else { //@ts-ignore newValue[`${key}`] = resolver(value, propertyTokenMap[key]); } }); rawValue = newValue; return rawValue; }, }, } ); export const ScrollView = StyledRoot;