We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2037922 commit 5d3a942Copy full SHA for 5d3a942
types/index.d.ts
@@ -201,6 +201,10 @@ interface IPropsSwipeRow<T> {
201
value: number;
202
}): void;
203
item: T;
204
+ /**
205
+ * useNativeDriver: true for all animations where possible
206
+ */
207
+ useNativeDriver: boolean;
208
}
209
210
export class SwipeRow<T> extends Component<Partial<IPropsSwipeRow<T>>> {
@@ -478,6 +482,10 @@ interface IPropsSwipeListView<T> {
478
482
* Use Animated.Flatlist or Animated.Sectionlist
479
483
*/
480
484
useAnimatedList: boolean;
485
486
487
488
481
489
490
491
type SectionListPropsOverride<T> = Omit<SectionListProps<T>, 'renderItem'>
0 commit comments