File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed
Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -44,7 +44,12 @@ import WhatsNew from "react-native-whatsnew-kit";
4444## Basic Usage
4545
4646``` jsx
47- < WhatsNew data= {data} isVisible= {isVisible} ImageComponent= {FastImage} onBackdropPress= {() => setIsVisible (false )} / >
47+ < WhatsNew
48+ data= {data}
49+ fullScreen= {false }
50+ isVisible= {isVisible}
51+ onBackdropPress= {() => setIsVisible (false )}
52+ / >
4853```
4954
5055## Data Array Format
Original file line number Diff line number Diff line change 11import React , { useState } from "react" ;
2- import { StatusBar , Dimensions , SafeAreaView } from "react-native" ;
2+ import { StatusBar , SafeAreaView } from "react-native" ;
33import WhatsNew from "./lib/src/WhatsNewKit" ;
44
5- const { width, height } = Dimensions . get ( "window" ) ;
6-
75const App = ( ) => {
86 const [ isVisible , setIsVisible ] = useState ( true ) ;
97 return (
You can’t perform that action at this time.
0 commit comments