UI Toolkit For React Native
npm install react-native-ui-toolkit
import { ScrollableHeader } from "react-native-ui-toolkit";
export default function App() {
return (
<View style={styles.container}>
<ScrollableHeader
bounces={false}
headerType={'DetailsHeader'}
backgroundColor={'grey'}
hasBorderRadius
headerHeight={105}
imgUrl={
'https://thumbs.dreamstime.com/z/bombay-potato-curry-indian-food-29146242.jpg'
}
title={'Food Title'}
>
<Text>Hellow</Text>
</ScrollableHeader>
</View>
);
}
See the contributing guide to learn how to contribute to the repository and the development workflow.
MIT