React Native: Different styles applied on orientation change


React Native: Different styles applied on orientation change



I'm developing a React Native application to be deployed as a native application on iOS and Android (and Windows, if possible).



The problem is that we want the layout to be different depending on screen dimensions and its orientation.



I've made some functions that return the styles object and are called on every component render's function, so I am able to apply different styles at application startup, but if the orientation (or screen's size) changes once the app has been initialized, they aren't recalculated nor reapplied.



I've added listeners to the top rendered so it updates its state on orientation change (and it forces a render for the rest of the application), but the subcomponents are not rerendering (because, in fact, they have not been changed).



So, my question is: how can I make to have styles that may be completely different based on screen size and orientation, just as with CSS Media Queries (which are rendered on the fly)?



I've already tried react-native-responsive module without luck.



Thank you!




3 Answers
3



You can use the onLayout prop:


onLayout


export default class Test extends Component {

constructor(props) {
super(props);
this.state = {
screen: Dimensions.get('window'),
};
}

getOrientation(){
if (this.state.screen.width > this.state.screen.height) {
return 'LANDSCAPE';
}else {
return 'PORTRAIT';
}
}

getStyle(){
if (this.getOrientation() === 'LANDSCAPE') {
return landscapeStyles;
} else {
return portraitStyles;
}
}
onLayout(){
this.setState({screen: Dimensions.get('window')});
}

render() {
return (
<View style={this.getStyle().container} onLayout = {this.onLayout.bind(this)}>

</View>
);
}
}
}

const portraitStyles = StyleSheet.create({
...
});

const landscapeStyles = StyleSheet.create({
...
});



Finally, I've been able to do so. Don't know the performance issues it can carry, but they should not be a problem since it's only called on resizing or orientation change.



I've made a global controller where I have a function which receives the component (the container, the view) and adds an event listener to it:


const getScreenInfo = () => {
const dim = Dimensions.get('window');
return dim;
}

const bindScreenDimensionsUpdate = (component) => {
Dimensions.addEventListener('change', () => {
try{
component.setState({
orientation: isPortrait() ? 'portrait' : 'landscape',
screenWidth: getScreenInfo().width,
screenHeight: getScreenInfo().height
});
}catch(e){
// Fail silently
}
});
}



With this, I force to rerender the component when there's a change on orientation, or on window resizing.



Then, on every component constructor:


import ScreenMetrics from './globalFunctionContainer';

export default class UserList extends Component {
constructor(props){
super(props);

this.state = {};

ScreenMetrics.bindScreenDimensionsUpdate(this);
}
}



This way, it gets rerendered everytime there's a window resize or an orientation change.



You should note, however, that this must be applied to every component which we want to listen to orientation changes, since if the parent container is updated but the state (or props) of the children do not update, they won't be rerendered, so it can be a performance kill if we have a big children tree listening to it.


state


props



Hope it helps someone!



The solution can be found [here][1].



The orientation of apps from portrait to landscape and vice versa is a task which sounds easy but may be tricky in react native when the view has to be changed when orientation changes. In other words to have different views defined for the two orientations can be achieved by the considering these two steps.



Import Dimensions from React Native


import { Dimensions } from 'react-native';



To identify the current orientation and render the view accordingly


/**
* Returns true if the screen is in portrait mode
*/
const isPortrait = () => {
const dim = Dimensions.get('screen');
return dim.height >= dim.width;
};

/**
* Returns true of the screen is in landscape mode
*/
const isLandscape = () => {
const dim = Dimensions.get('screen');
return dim.width >= dim.height;
};



To know when orientation changes to change view accordingly


// Event Listener for orientation changes
Dimensions.addEventListener('change', () => {
this.setState({
orientation: Platform.isPortrait() ? 'portrait' : 'landscape'
});
});



Assembling all pieces


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

export default class App extends React.Component {
constructor() {
super();

/**
* Returns true if the screen is in portrait mode
*/
const isPortrait = () => {
const dim = Dimensions.get('screen');
return dim.height >= dim.width;
};

this.state = {
orientation: isPortrait() ? 'portrait' : 'landscape'
};

// Event Listener for orientation changes
Dimensions.addEventListener('change', () => {
this.setState({
orientation: isPortrait() ? 'portrait' : 'landscape'
});
});

}

render() {
if (this.state.orientation === 'portrait') {
return (
//Render View to be displayed in portrait mode
);
}
else {
return (
//Render View to be displayed in landscape mode
);
}

}
}



As the event defined for looking out the orientation change uses this command ‘this.setState()’, this method automatically again calls for ‘render()’ so we don’t have to worry about rendering it again, it’s all taken care of.





Please post code as text in the answer, not as images. You can format the code as a code block using Ctrl + K or the {} button on top of the editor.
– Fei Xiang
Jul 2 at 0:42


{}





Thanks @FeiXiang. I have made the changes.
– Mridul Tripathi
2 hours ago






By clicking "Post Your Answer", you acknowledge that you have read our updated terms of service, privacy policy and cookie policy, and that your continued use of the website is subject to these policies.

Popular posts from this blog

How to add background colour in existing image using Swift?

Moria Casán

How to make file upload 'Required' in Contact Form 7?