react-native-animated-header-scroll-view icon indicating copy to clipboard operation
react-native-animated-header-scroll-view copied to clipboard

Error: Style property 'zIndex' is not supported by native animated module

Open hellolgl opened this issue 1 year ago • 1 comments

Error: Style property 'zIndex' is not supported by native animated module ` export default function ParentHabitHomePage (){

const data = Array.from(Array(20).keys());
return (
    <AnimatedScrollView
        headerMaxHeight={400}
        topBarHeight={80}
        TopNavBarComponent={<Text>TopNavBarComponent</Text>}
        headerImage={images.habit_home}
    >
        {data.map((e) => {
            return <Text>item</Text>
        })}
    </AnimatedScrollView>
);

}; `

"@kanelloc/react-native-animated-header-scroll-view": "^1.0.0",

hellolgl avatar Jan 19 '24 09:01 hellolgl