How to hide scroll bar indicator on TextInput in react native

Viewed 1769

I would like to hide or remove the scroll bar indicator on the TextInput component.I enabled multiline props to true then I set the props scrollEnabled to false.But in my component still showing scroll indicator. I am using the following code. Please help me how to solve this issue.

<TextInput
        multiline={true}
        scrollEnabled={false}
        style={{
          backgroundColor: 'green',
          height:50,
          fontSize: 20,
          color: '#ffff',
          fontFamily: 'medium'
        }}
      />
0 Answers
Related