@@ -346,17 +346,6 @@ type IOSProps = $ReadOnly<{|
346
346
* The default value is true.
347
347
*/
348
348
showsHorizontalScrollIndicator ?: ?boolean ,
349
- /**
350
- * When `snapToInterval` is set, `snapToAlignment` will define the relationship
351
- * of the snapping to the scroll view.
352
- *
353
- * - `'start'` (the default) will align the snap at the left (horizontal) or top (vertical)
354
- * - `'center'` will align the snap in the center
355
- * - `'end'` will align the snap at the right (horizontal) or bottom (vertical)
356
- *
357
- * @platform ios
358
- */
359
- snapToAlignment ?: ?( 'start' | 'center' | 'end' ) ,
360
349
/**
361
350
* The current scale of the scroll view content. The default value is 1.0.
362
351
* @platform ios
@@ -597,6 +586,15 @@ export type Props = $ReadOnly<{|
597
586
* for example when you want your list to have an animated hidable header.
598
587
*/
599
588
StickyHeaderComponent ?: StickyHeaderComponentType ,
589
+ /**
590
+ * When `snapToInterval` is set, `snapToAlignment` will define the relationship
591
+ * of the snapping to the scroll view.
592
+ *
593
+ * - `'start'` (the default) will align the snap at the left (horizontal) or top (vertical)
594
+ * - `'center'` will align the snap in the center
595
+ * - `'end'` will align the snap at the right (horizontal) or bottom (vertical)
596
+ */
597
+ snapToAlignment ?: ?( 'start' | 'center' | 'end' ) ,
600
598
/**
601
599
* When set, causes the scroll view to stop at multiples of the value of
602
600
* `snapToInterval`. This can be used for paginating through children
0 commit comments