From 010cabcefbe1644654e145d239856cdb2dae5431 Mon Sep 17 00:00:00 2001 From: bl00dymarie Date: Thu, 15 Feb 2024 17:37:15 +0100 Subject: [PATCH] Allow scrolling in note text field --- components/cycle-day/symptom-edit-view.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/cycle-day/symptom-edit-view.js b/components/cycle-day/symptom-edit-view.js index 616f70b..a406afd 100644 --- a/components/cycle-day/symptom-edit-view.js +++ b/components/cycle-day/symptom-edit-view.js @@ -110,7 +110,7 @@ const SymptomEditView = ({ date, onClose, symptom, symptomData }) => { const inputProps = { multiline: true, numberOfLines: 3, - scrollEnabled: false, + scrollEnabled: true, style: styles.input, textAlignVertical: 'top', }