Getting Started

The following is a code block with JavaScript language syntax highlighting.

Installation

npm install react-native-lights

or

yarn add react-native-lights

Usage

import {BottomSheet} from "react-native-lights";
const BottomSheet = () => {
const data =
{
buttonText: 'card1',
buttonStyles:{borderRadius:5,backgroundColor:"#42f5e9", buttonTextColor:"black"},
bottomSheetStyles:{backgroundColor:"#edfcfb", textFontSize:15},
bodyText: 'Lorem ipsum dolor sit amet et nuncat mergitur',
}
return (
<View style={{flex:1}}>
<BottomSheet data={data}/>
</View>
);
};