From 9c40be55298c302df142806505de4f25bc149acb Mon Sep 17 00:00:00 2001 From: Noitidart Date: Wed, 30 May 2018 16:55:10 -0700 Subject: [PATCH] Update README.md typo in basic list example code --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index c9c7c06..df535b6 100644 --- a/README.md +++ b/README.md @@ -451,7 +451,7 @@ const { selectedItem } = await DialogAndroid.showPicker('Pick a fruit', null, { }); if (selectedItem) { // when negative button is clicked, selectedItem is not present, so it doesn't get here - console.log('You selected item:', item); + console.log('You selected item:', selectedItem); } ```