rrain0
rrain0
Thanks! `collapsable={false}` is working.
And instead of `measure()` better use `onLayout={}` `View` attribute (it works without `collapsable={false}`). ``` const onLayout = ({nativeEvent: {layout: { x, y, width:w, height:h }}}: LayoutChangeEvent) => { console.log('onLayout: ',x,y,w,h)...
> @Miofly  I am getting an error: `ReferenceError: Env is not defined` What is `const root: string = Env.PROJECT_ROOT` ?
> You'd gain more explicitness in your codebase I think it is not explicitness but useless verboseness. Just see the code: ```tsx const MyImg = styled.img` position: absolute; left: 0;...
Now, with React 19 eliminating the need of React.forwardRef 🎉🎉🎉, it is possible somehow. But builtin type `Partial` allows any prop of any value outside of `keyof T` (is it...