I am using react-native's LayoutAnimation custom component with maps. On ios animation works properly, but not on android. I'm changing component height
const HeightAnimation = {
duration: 200,
create: {
type: LayoutAnimation.Types.linear,
property: LayoutAnimation.Properties.scaleXY
},
update: {
type: LayoutAnimation.Types.easeInEaseOut
}
}
You need to set the following flags via UIManager. Did you do this in your code?
You could check the docs here -> https://reactnative.dev/docs/layoutanimation