Вы можете поместить свой TextInput в компонент View и поместить изображение в самом начале.Однажды я создал нечто похожее на это
<View
style={{
flex: 1,
borderWidth: 1,
borderRadius: 11,
borderColor: "#e1e1e1",
}}>
<TextInput
placeholder="Place Enter Your Username"
placeholderTextColor={'#FFFFFF'}
style={{color: '#FFFFFF'}}
underlineColorAndroid={"transparent"}
onChangeText={(text) => {
this.filter = text
}}/>
<Image
resizeMode={'cover'}
style={{
width: 22,
height: 24,
marginRight: 25,
position: 'absolute',
left: 10,
top: 10
}}
source={require('./Images/ic_search_color.png')}/>
</View>