skip to Main Content

How to make multiline label in TextField react native?

this is my code <View> <TextField ref={this.layananMenu} editable={false} label={ 'Produk investasi apa saja yang pernah kamu miliki?' } value={this.state.product?.menuName} renderRightAccessory={() => this.state.loadingUsaha ? ( //ganti <ActivityIndicator animating={true} /> ) : ( <Icon name={'keyboard-arrow-down'} size={24} /> ) } /> </View> and…

VIEW QUESTION

Nested Texts not aligning (React Native)

I have this basic setup in React Native: class App extends Component { render() { return ( <View style={styles.container}> <Text style={styles.textContainer}> <View> <Text style={styles.textHighlighting}> Testing </Text> </View> . </Text> <Text style={styles.textContainer}> <View> <Text style={styles.textHighlighting}> Again </Text> </View> ! </Text> </View>…

VIEW QUESTION
Back To Top
Search