skip to Main Content

Reactjs – The difference between View and ScrollView in styling

function StartGameScreen() { return ( <View style={styles.inputContainer}> <TextInput style={styles.numberInput} maxLength={2} keyboardType="number-pad" autoCapitalize="none" autoCorrect={false} /> <PrimaryButton>Reset</PrimaryButton> <PrimaryButton>Confirm</PrimaryButton> </View>) } const styles = StyleSheet.create({ inputContainer: { backgroundColor : '#ff6868', marginTop : 100, padding : 16, marginHorizontal : 24, borderRadius : 8, shadowColor…

VIEW QUESTION
Back To Top
Search