mirror of
https://github.com/status-im/react-native.git
synced 2025-01-14 11:34:23 +00:00
use scrollview for lightbox on ios
Reviewed By: wwalser Differential Revision: D6858376 fbshipit-source-id: a9ff9c71cb4ad56a4f5af73a4e86de52ddf75700
This commit is contained in:
parent
74963eb945
commit
e485cde187
@ -19,12 +19,9 @@ export type Layout = {|
|
||||
+width: number,
|
||||
+height: number,
|
||||
|};
|
||||
export type LayoutEvent = {|
|
||||
+nativeEvent: {|
|
||||
+layout: Layout,
|
||||
|},
|
||||
+persist: () => void,
|
||||
|};
|
||||
export type LayoutEvent = SyntheticEvent<{|
|
||||
+layout: Layout,
|
||||
|}>;
|
||||
|
||||
export type SyntheticEvent<T> = {|
|
||||
+bubbles: ?boolean,
|
||||
@ -39,6 +36,7 @@ export type SyntheticEvent<T> = {|
|
||||
+isPropagationStopped: () => boolean,
|
||||
+isTrusted: ?boolean,
|
||||
+nativeEvent: T,
|
||||
+persist: () => void,
|
||||
+target: ?number,
|
||||
+timeStamp: number,
|
||||
+type: ?string,
|
||||
|
Loading…
x
Reference in New Issue
Block a user