In this React Native source code example, the source code below illustrate how to place a View at the bottom of the screen in React Native.
You can copy and adopt this source code example to your React Native project without reinventing the wheel.
import React, {Component} from 'react';
import {StyleSheet, View} from 'react-native';
export default class App extends Component {
render() {
return (
<View style={styles.container}>
<View style={styles.box}></View>
</View>
);
}
}
const styles = StyleSheet.create({
container: {
flex: 1,
justifyContent: 'flex-end',
alignItems: 'center',
backgroundColor: '#fff',
},
box:{
width:'100%',
height:70,
backgroundColor:'blue'
},
});
If you have any questions or suggestions kindly use the comment box or you can contact us directly through our contact page below.