Files
bsky-social-app/modules/react-native-scroll-forwarder/src/ScrollForwarderView.ios.tsx
T
hailey 0466e4c4a2 fabric: update scroll forwarder for profile headers (#8366)
* progress

* remove old module

* nil delegates

* clean up problems

* fix refreshing

* bump
2025-06-11 00:56:53 +03:00

13 lines
315 B
TypeScript

import {
default as NativeScrollForwarderView,
type NativeProps,
} from './ScrollForwarderViewNativeComponent'
export function ScrollForwarderView({children, ...rest}: NativeProps) {
return (
<NativeScrollForwarderView {...rest} style={{flex: 1}}>
{children}
</NativeScrollForwarderView>
)
}