Skip to content

Commit

Permalink
use scrollview for lightbox on ios
Browse files Browse the repository at this point in the history
Reviewed By: wwalser

Differential Revision: D6858376

fbshipit-source-id: a9ff9c71cb4ad56a4f5af73a4e86de52ddf75700
  • Loading branch information
sahrens authored and facebook-github-bot committed Feb 1, 2018
1 parent 74963eb commit e485cde
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions Libraries/Types/CoreEventTypes.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand All @@ -39,6 +36,7 @@ export type SyntheticEvent<T> = {|
+isPropagationStopped: () => boolean,
+isTrusted: ?boolean,
+nativeEvent: T,
+persist: () => void,
+target: ?number,
+timeStamp: number,
+type: ?string,
Expand Down

1 comment on commit e485cde

@turnrye
Copy link
Contributor

@turnrye turnrye commented on e485cde Mar 2, 2018

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I don't understand how this commit message is relevant to the change made.

Please sign in to comment.