I Want to retain the placeholder on left side while typing any kind of text in TextInput Field in React Native

Here is my code…please check the code and guide me….what i have to do for that

            <Input
            containerStyle={tailwind('mt-4')}
            label="Item Price"
            labelStyle={{fontWeight: '800'}}
            theme="secondary"
            keyboardType={'numeric'}
            type="underline"
            placeholder="$"
            clear={true}
            onBlur={onBlur}
            value={price}
            onChangeText={text => setPrice(text)}
            errorMessage={
              !/d+((,d+)+)?(.d+)?(.d+)?(,d+)?/.test(price) && price
                ? 'Invalid Price'
                : null
            }
          /> 
        )}
        name={'price'}