mirror of
https://github.com/zhigang1992/react-native.git
synced 2026-05-23 03:44:13 +08:00
Upgrade fbsource/xplat/js to Flow v0.53.0
Reviewed By: avikchaudhuri Differential Revision: D5648819 Ninja: T20988071 fbshipit-source-id: 66e5b6747c79ae66b6eb69d40ede5e982c26174f
This commit is contained in:
committed by
Facebook Github Bot
parent
1ce7e4c1e5
commit
90eaeb019b
@@ -68,18 +68,16 @@ export type ViewPagerScrollState = $Enum<{
|
||||
* }
|
||||
* ```
|
||||
*/
|
||||
class ViewPagerAndroid extends React.Component {
|
||||
props: {
|
||||
initialPage?: number,
|
||||
onPageScroll?: Function,
|
||||
onPageScrollStateChanged?: Function,
|
||||
onPageSelected?: Function,
|
||||
pageMargin?: number,
|
||||
peekEnabled?: boolean,
|
||||
keyboardDismissMode?: 'none' | 'on-drag',
|
||||
scrollEnabled?: boolean,
|
||||
};
|
||||
|
||||
class ViewPagerAndroid extends React.Component<{
|
||||
initialPage?: number,
|
||||
onPageScroll?: Function,
|
||||
onPageScrollStateChanged?: Function,
|
||||
onPageSelected?: Function,
|
||||
pageMargin?: number,
|
||||
peekEnabled?: boolean,
|
||||
keyboardDismissMode?: 'none' | 'on-drag',
|
||||
scrollEnabled?: boolean,
|
||||
}> {
|
||||
static propTypes = {
|
||||
...ViewPropTypes,
|
||||
/**
|
||||
|
||||
Reference in New Issue
Block a user