Skip to content

Instantly share code, notes, and snippets.

@peterlazar1993
Created December 8, 2017 07:42
Show Gist options
  • Save peterlazar1993/d343675f6817eb8c1920fc0878e8318e to your computer and use it in GitHub Desktop.
Save peterlazar1993/d343675f6817eb8c1920fc0878e8318e to your computer and use it in GitHub Desktop.
layoutAnimationConfig
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