React-native-animatable: transitionTo not working on android

Created on 6 Jan 2017  路  5Comments  路  Source: oblador/react-native-animatable

I tried everything, transitionTo is not working for me.

other animations works well, when im trying to use transitionTo nothing happen.

react-native-animatable Version: 1.1.0
react-native Version: 0.40

Most helpful comment

It seems like the problem was that I had my Remote Js Debugging on and it prevented the animations from happening

All 5 comments

import * as Animatable from 'react-native-animatable';
export default class testing extends Component {
constructor(props) {
super(props);
if (Platform.OS === 'android') {
UIManager.setLayoutAnimationEnabledExperimental && UIManager.setLayoutAnimationEnabledExperimental(true);
//UIManager.setLayoutAnimationEnabledExperimental(true);
}
}
componentDidMount(){
// LayoutAnimation.configureNext(CustomLayoutLinearSlow);
this.refs.loadingText.fadeInDownBig(1600);
}
render(){
return(


);
}
}

Not any animation is working on android.. Please help...Thanks in advance

+1

any updates on this ? I believe this is a very critical problem

It seems like the problem was that I had my Remote Js Debugging on and it prevented the animations from happening

Disabling remote JS debugging and restarting the emulator fixes that problem for me too.

Was this page helpful?
0 / 5 - 0 ratings

Related issues

matheuscastroweb picture matheuscastroweb  路  6Comments

ssomnoremac picture ssomnoremac  路  5Comments

ovaris picture ovaris  路  4Comments

pcfutures picture pcfutures  路  4Comments

quangtruong16994 picture quangtruong16994  路  5Comments