we are a community of more than 2 million smartest coders
registration for
employee referral programs
are now open
get referred to google, amazon, flipkart and more
register now
  
pinned-register now
showing results for - "put two buttons in a row in react native"
Andrea
31 Jan 2018
1render() {
2  return (
3    <View style={styles.container}>
4      <View style={styles.button} />
5      <View style={styles.button} />
6    </View>
7  );
8}
9
10const styles = StyleSheet.create({
11  container: {
12    flex: 1,
13    flexDirection: 'row',
14    justifyContent: 'space-between'
15  },
16  button: {
17    backgroundColor: 'green',
18    width: '40%',
19    height: 40
20  }
21});