You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
/** Points for snapping of bottom sheet component. They define distance from bottom of the screen. Might be number or percent (as string e.g. '20%') for points or percents of screen height from bottom. */
7
+
snapPoints: number[];
8
+
9
+
/** Determines initial snap point of bottom sheet. Defaults to 0. */
10
+
initialSnap?: number;
11
+
12
+
/** Method for rendering scrollable content of bottom sheet. */
13
+
renderContent?: ()=>React.ReactElement|null;
14
+
15
+
/** Method for rendering non-scrollable header of bottom sheet. */
16
+
renderHeader?: ()=>React.ReactElement|null;
17
+
18
+
/** Defines if bottom sheet could be scrollable by gesture. Defaults to true. */
19
+
enabledGestureInteraction?: boolean;
20
+
21
+
/** If false blocks snapping using snapTo method. Defaults to true */
22
+
enabledManualSnapping?: boolean;
23
+
24
+
/** Defines whether it's possible to scroll inner content of bottom sheet. Defaults to true. */
25
+
enabledInnerScrolling?: boolean;
26
+
27
+
/** Reanimated node which holds position of bottom sheet, where 1 it the highest snap point and 0 is the lowest. */
0 commit comments