File tree Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Expand file tree Collapse file tree 1 file changed +23
-0
lines changed Original file line number Diff line number Diff line change
1
+ export default interface ParallaxScrollView {
2
+ backgroundScrollSpeed ?: number ;
3
+ backgroundColor ?: string ;
4
+ contentBackgroundColor ?: string ;
5
+ fadeOutForeground ?: boolean ;
6
+ onChangeHeaderVisibility ?: ( value : boolean ) => void ;
7
+ renderScrollComponent ?: ( props : any ) => any ;
8
+ renderBackground ( params : RenderBackgroundParams ) ;
9
+ renderForeground : ( ) => any ;
10
+ stickyHeaderHeight ?: number ;
11
+ contentContainerStyle ?: any ;
12
+ outputScaleValue ?: number ;
13
+ }
14
+
15
+ export class RenderBackgroundParams {
16
+ fadeOutForeground : any ;
17
+ backgroundScrollSpeed : number ;
18
+ backgroundColor : string ;
19
+ parallaxHeaderHeight : number ;
20
+ stickyHeaderHeight : number ;
21
+ renderBackground : ( ) => void ;
22
+ outputScaleValue : number ;
23
+ }
You can’t perform that action at this time.
0 commit comments