Fixed proximo list details
このコミットが含まれているのは:
コミット
6f005a5d7d
1個のファイルの変更、2行の追加、3行の削除
|
|
@ -78,7 +78,6 @@ export default class ProximoListScreen extends React.Component<Props, State> {
|
||||||
onSelectSortModePrice: Function;
|
onSelectSortModePrice: Function;
|
||||||
onSortMenuPress: Function;
|
onSortMenuPress: Function;
|
||||||
renderItem: Function;
|
renderItem: Function;
|
||||||
onListItemPress: Function;
|
|
||||||
|
|
||||||
constructor(props: any) {
|
constructor(props: any) {
|
||||||
super(props);
|
super(props);
|
||||||
|
|
@ -91,7 +90,6 @@ export default class ProximoListScreen extends React.Component<Props, State> {
|
||||||
this.onSelectSortModePrice = this.onSelectSortModePrice.bind(this);
|
this.onSelectSortModePrice = this.onSelectSortModePrice.bind(this);
|
||||||
this.onSortMenuPress = this.onSortMenuPress.bind(this);
|
this.onSortMenuPress = this.onSortMenuPress.bind(this);
|
||||||
this.renderItem = this.renderItem.bind(this);
|
this.renderItem = this.renderItem.bind(this);
|
||||||
this.onListItemPress = this.onListItemPress.bind(this);
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|
@ -318,9 +316,10 @@ export default class ProximoListScreen extends React.Component<Props, State> {
|
||||||
}
|
}
|
||||||
|
|
||||||
renderItem({item}: Object) {
|
renderItem({item}: Object) {
|
||||||
|
const onListItemPress = this.onListItemPress.bind(this, item);
|
||||||
return (<ListItem
|
return (<ListItem
|
||||||
thumbnail
|
thumbnail
|
||||||
onPress={this.onListItemPress}
|
onPress={onListItemPress}
|
||||||
>
|
>
|
||||||
<Left>
|
<Left>
|
||||||
<Thumbnail square source={{uri: item.image}}/>
|
<Thumbnail square source={{uri: item.image}}/>
|
||||||
|
|
|
||||||
読み込み中…
新しいイシューから参照