File tree Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Expand file tree Collapse file tree 2 files changed +6
-1
lines changed Original file line number Diff line number Diff line change @@ -502,7 +502,7 @@ export type Props = $ReadOnly<{|
502
502
/**
503
503
* Reverses the direction of scroll. Uses native inversion on macOS and scale transforms of -1 elsewhere
504
504
*/
505
- inverted ?: ?boolean ,
505
+ inverted ?: ?boolean , // TODO(macOS GH#774)
506
506
/**
507
507
* Determines whether the keyboard gets dismissed in response to a drag.
508
508
*
Original file line number Diff line number Diff line change @@ -72,6 +72,7 @@ type DirectEventProps = $ReadOnly<{|
72
72
73
73
/**
74
74
* This event is fired when the scrollView's inverted property changes.
75
+ * @platform macos
75
76
*/
76
77
onInvertedDidChange ?: ?( ) => mixed , // TODO(macOS GH#774)
77
78
@@ -419,6 +420,10 @@ type IOSViewProps = $ReadOnly<{|
419
420
* See https://reactnative.dev/docs/view#accessibilityElementsHidden
420
421
*/
421
422
accessibilityElementsHidden ?: ?boolean ,
423
+ /**
424
+ * Reverses the direction of scroll. Uses native inversion on macOS and scale transforms of -1 elsewhere
425
+ */
426
+ inverted ?: ?boolean , // TODO(macOS GH#774)
422
427
423
428
onDoubleClick ?: ?( event : SyntheticEvent < { } > ) => mixed , // TODO(macOS GH#774)
424
429
You can’t perform that action at this time.
0 commit comments