Make view 80% width of parent in React Native

JavascriptCssReactjsReact Native

Javascript Problem Overview


I'm creating a form in React Native and would like to make my TextInputs 80% of the screen width.

With HTML and ordinary CSS, this would be straightforward:

input {
    display: block;
    width: 80%;
    margin: auto;
}

Except that React Native doesn't support the display property, percentage widths, or auto margins.

So what should I do instead? There's some discussion of this problem in React Native's issue tracker, but the proposed solutions seem like nasty hacks.

Javascript Solutions


Solution 1 - Javascript

As of React Native 0.42 height: and width: accept percentages.

Use width: 80% in your stylesheets and it just works.

  • Screenshot
    https://i.stack.imgur.com/lanin.png" width="200" />

  • Live Example
    Child Width/Height as Proportion of Parent

  • Code

    import React from 'react';
    import { Text, View, StyleSheet } from 'react-native';
    
    const width_proportion = '80%';
    const height_proportion = '40%';
    
    const styles = StyleSheet.create({
      screen: {
        flex: 1,
        alignItems: 'center',
        justifyContent: 'center',
        backgroundColor: '#5A9BD4',
      },
      box: {
        width: width_proportion,
        height: height_proportion,
        alignItems: 'center',
        justifyContent: 'center',
        backgroundColor: '#B8D2EC',
      },
      text: {
        fontSize: 18,
      },
    });
    
    export default () => (
      <View style={styles.screen}>
        <View style={styles.box}>
          <Text style={styles.text}>
            {width_proportion} of width{'\n'}
            {height_proportion} of height
          </Text>
        </View>
      </View>
    );
    

Solution 2 - Javascript

That should fit your needs:

var yourComponent = React.createClass({
    render: function () {
        return (
            <View style={{flex:1, flexDirection:'column', justifyContent:'center'}}>
                <View style={{flexDirection:'row'}}>
                    <TextInput style={{flex:0.8, borderWidth:1, height:20}}></TextInput>
                    <View style={{flex:0.2}}></View> // spacer
                </View>
            </View>
        );
    }
});

Solution 3 - Javascript

If you are simply looking to make the input relative to the screen width, an easy way would be to use Dimensions:

// De structure Dimensions from React
var React = require('react-native');
var {
  ...
  Dimensions
} = React; 

// Store width in variable
var width = Dimensions.get('window').width; 

// Use width variable in style declaration
<TextInput style={{ width: width * .8 }} />

I've set up a working project here. Code is also below.

https://rnplay.org/apps/rqQPCQ

'use strict';

var React = require('react-native');
var {
  AppRegistry,
  StyleSheet,
  Text,
  View,
  TextInput,
  Dimensions
} = React;

var width = Dimensions.get('window').width;

var SampleApp = React.createClass({
  render: function() {
    return (
      <View style={styles.container}>
        <Text style={{fontSize:22}}>Percentage Width In React Native</Text>
        <View style={{marginTop:100, flexDirection: 'row',justifyContent: 'center'}}>
          	<TextInput style={{backgroundColor: '#dddddd', height: 60, width: width*.8 }} />
          </View>
      </View>
    );
  }
});

var styles = StyleSheet.create({
  container: {
    flex: 1,
    marginTop:100
  },
 
});

AppRegistry.registerComponent('SampleApp', () => SampleApp);


Solution 4 - Javascript

In your StyleSheet, simply put:

width: '80%';

instead of:

width: 80%;

Keep Coding........ :)

Solution 5 - Javascript

You can also try react-native-extended-stylesheet that supports percentage for single-orientation apps:

import EStyleSheet from 'react-native-extended-stylesheet';

const styles = EStyleSheet.create({
  column: {
    width: '80%',
    height: '50%',
    marginLeft: '10%'
  }
});

Solution 6 - Javascript

The technique I use for having percentage width of the parent is adding an extra spacer view in combination with some flexbox. This will not apply to all scenarios but it can be very helpful.

So here we go:

class PercentageWidth extends Component {
    render() {
        return (
            <View style={styles.container}>
                <View style={styles.percentageWidthView}>
                    {/* Some content */}
                </View>

                <View style={styles.spacer}
                </View>
            </View>
        );
    }
}

const styles = StyleSheet.create({
    container: {
        flexDirection: 'row'
    },

    percentageWidthView: {
        flex: 60
    },

    spacer: {
        flex: 40
    }
});

Basically the flex property is the width relative to the "total" flex of all items in the flex container. So if all items sum to 100 you have a percentage. In the example I could have used flex values 6 & 4 for the same result, so it's even more FLEXible.

If you want to center the percentage width view: add two spacers with half the width. So in the example it would be 2-6-2.

Of course adding the extra views is not the nicest thing in the world, but in a real world app I can image the spacer will contain different content.

Solution 7 - Javascript

I have an updated solution (late 2019) , to get 80% width of parent Responsively with Hooks it work's even if the device rotate.

You can use Dimensions.get('window').width to get Device Width in this example you can see how you can do it Responsively

import React, { useEffect, useState } from 'react';
import { Dimensions , View , Text , StyleSheet  } from 'react-native';

export default const AwesomeProject() => {
   const [screenData, setScreenData] = useState(Dimensions.get('window').width);
   
    useEffect(() => {
     const onChange = () => {
     setScreenData(Dimensions.get('window').width);
     };
     Dimensions.addEventListener('change', onChange);

     return () => {Dimensions.removeEventListener('change', onChange);};
    });

   return (  
          <View style={[styles.container, { width: screenData * 0.8 }]}>
             <Text> I'mAwesome </Text>
           </View>
    );
}

const styles = StyleSheet.create({
container: {
     flex: 1,
     alignItems: 'center',
     justifyContent: 'center',
     backgroundColor: '#eee',
     },
});

Solution 8 - Javascript

The easiest way to achieve is by applying width to view.

width: '80%'

Solution 9 - Javascript

This is the way I got the solution. Simple and Sweet. Independent of Screen density:

export default class AwesomeProject extends Component {
	constructor(props){
		super(props);
		this.state = {text: ""}
	}
  render() {
    return (
       <View
		  style={{
			flex: 1,
			backgroundColor: "#ececec",
			flexDirection: "column",
			justifyContent: "center",
			alignItems: "center"
		  }}
		>
		  <View style={{ padding: 10, flexDirection: "row" }}>
			<TextInput
			  style={{ flex: 0.8, height: 40, borderWidth: 1 }}
			  onChangeText={text => this.setState({ text })}
			  placeholder="Text 1"
			  value={this.state.text}
			/>
		  </View>
		  <View style={{ padding: 10, flexDirection: "row" }}>
			<TextInput
			  style={{ flex: 0.8, height: 40, borderWidth: 1 }}
			  onChangeText={text => this.setState({ text })}
			  placeholder="Text 2"
			  value={this.state.text}
			/>
		  </View>
		  <View style={{ padding: 10, flexDirection: "row" }}>
			<Button
			  onPress={onButtonPress}
			  title="Press Me"
			  accessibilityLabel="See an Information"
			/>
		  </View>
		</View>
    );
  }
}

Solution 10 - Javascript

Just add quotes around the size in your code. Using this you can use percentage in width, height

input: {
    width: '80%'
}

Attributions

All content for this solution is sourced from the original question on Stackoverflow.

The content on this page is licensed under the Attribution-ShareAlike 4.0 International (CC BY-SA 4.0) license.

Content TypeOriginal AuthorOriginal Content on Stackoverflow
QuestionMark AmeryView Question on Stackoverflow
Solution 1 - JavascriptGollyJerView Answer on Stackoverflow
Solution 2 - JavascriptneciuView Answer on Stackoverflow
Solution 3 - JavascriptNader DabitView Answer on Stackoverflow
Solution 4 - JavascriptKrishna Raj SalimView Answer on Stackoverflow
Solution 5 - JavascriptvitaletsView Answer on Stackoverflow
Solution 6 - JavascriptdsdeurView Answer on Stackoverflow
Solution 7 - JavascriptShayan MoghadamView Answer on Stackoverflow
Solution 8 - JavascriptKushal DesaiView Answer on Stackoverflow
Solution 9 - Javascriptsagar suriView Answer on Stackoverflow
Solution 10 - JavascriptManas SanasView Answer on Stackoverflow