15
3FNPWF*UFN
1 _renderItem(item) {
2 const onPress = () => {
3 AlertIOS.prompt(
4 'Delete',
5 null,
6 [
7 {text: 'Delete', onPress: (text) =>
this.itemsRef.child(item._key).remove()},
8 {text: 'Cancel', onPress: (text) => console.log('Cancel')}
9 ],
10 'default'
11 );
12 };
13 return (
14
15 );
16 }