use scrollview for lightbox on ios

Reviewed By: wwalser

Differential Revision: D6858376

fbshipit-source-id: a9ff9c71cb4ad56a4f5af73a4e86de52ddf75700
This commit is contained in:
Spencer Ahrens 2018-02-01 11:35:36 -08:00 committed by Facebook Github Bot
parent 74963eb945
commit e485cde187

View File

@ -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,