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

ES6-ify ListView Basics #8370

Closed
wants to merge 2 commits into from
Closed
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 12 additions & 11 deletions docs/Basics-Component-ListView.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,20 +20,21 @@ This example creates a simple `ListView` of hardcoded data. It first initializes
> A `rowHasChanged` function is required to use `ListView`. Here we just say a row has changed if the row we are on is not the same as the previous row.

```JavaScript
import React from 'react';
import React, { Component } from 'react';
import { AppRegistry, ListView, Text, View } from 'react-native';

var AwesomeList = React.createClass({
class ListViewBasics extends Component {
// Initialize the hardcoded data
getInitialState: function() {
var ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
return {
constructor(props) {
super(props);
const ds = new ListView.DataSource({rowHasChanged: (r1, r2) => r1 !== r2});
this.state = {
dataSource: ds.cloneWithRows([
'John', 'Joel', 'James', 'Jimmy', 'Jackson', 'Jillian', 'Julie'
])
'John', 'Joel', 'James', 'Jimmy', 'Jackson', 'Jillian', 'Julie', 'Devin'
])
};
},
render: function() {
}
render() {
return (
<View style={{paddingTop: 22}}>
<ListView
Expand All @@ -43,8 +44,8 @@ var AwesomeList = React.createClass({
</View>
);
}
});
}

// App registration and rendering
AppRegistry.registerComponent('AwesomeProject', () => AwesomeList);
AppRegistry.registerComponent('AwesomeProject', () => ListViewBasics);
```