Created
December 8, 2017 07:42
-
-
Save peterlazar1993/d343675f6817eb8c1920fc0878e8318e to your computer and use it in GitHub Desktop.
layoutAnimationConfig
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
export const configLayoutAnimation = () => | |
Platform.OS === 'ios' | |
? LayoutAnimation.easeInEaseOut() | |
: LayoutAnimation.configureNext({ | |
duration: 300, | |
create: { | |
type: LayoutAnimation.Types.easeInEaseOut, | |
property: LayoutAnimation.Properties.opacity, | |
}, | |
update: { type: LayoutAnimation.Types.easeInEaseOut }, | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment