Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Unsupported layout animation createConfig property (null) #928

Closed
ilansas opened this issue Apr 20, 2015 · 3 comments
Closed

Unsupported layout animation createConfig property (null) #928

ilansas opened this issue Apr 20, 2015 · 3 comments
Labels
Resolution: Locked This issue was locked by the bot.

Comments

@ilansas
Copy link

ilansas commented Apr 20, 2015

Trying to render my scene, which contains a SlideMenu in which each items change my Content View, I get that error :

[RCTLog][tid:0x7f8f7054b4b0]
[RCTUIManager.m:466]>Unsupported layout animation createConfig property (null)

I don't really understand where it comes from, because I don't actually use any animation (at least on purpose, I suppose it's an internal thing).

It actually happens when I change the View is supposed to change, by clicking on "Dismiss" on the Emulator, the View is in fact changing.

I'm sorry if I'm not clear, feel free to tell me, here is my code :

My menu which triggers the change of View :

var Menu = React.createClass({
  render: function() {
    return (
      <View style={styles.container}>
        <Section 
          id='suggestions' 
          icon='&#xF0A7;'
          name='SUGGESTIONS'
          toggleSlideMenu={this.props.toggleSlideMenu} 
          setFragment={this.props.setFragment}/>

          //Some other sections
      </View>
    );
  }
});

My component to render :

var Suggestions = React.createClass({
    render: function() {
        return (
            <View style={styles.container} />
        );
    }
});

var styles = StyleSheet.create({
    container: {
        flex: 1, 
        backgroundColor: '#4455FF',
    },
});

Where the component should render:

var GeneralTemplate = React.createClass({
render: function() {
    var fragment = this.props.fragment;
    return(
      <View style={styles.container}>
        {fragment}
      </View>
    );
  }
@ilansas ilansas closed this as completed May 4, 2015
@liubko
Copy link
Contributor

liubko commented May 21, 2015

@ilansas hi, I'm getting the same error. Did you solve this issue?

@ilansas
Copy link
Author

ilansas commented May 21, 2015

Yes :) See it right here #1135 (comment)

@liubko
Copy link
Contributor

liubko commented May 21, 2015

It works now. Thanks

@facebook facebook locked as resolved and limited conversation to collaborators May 29, 2018
@react-native-bot react-native-bot added the Resolution: Locked This issue was locked by the bot. label Jul 22, 2018
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
Resolution: Locked This issue was locked by the bot.
Projects
None yet
Development

No branches or pull requests

3 participants