Only one comment.

  1. Ken Lee

    Assuming that your bottom footer is having height=80

    To place it on the position above your bottom footer, you may:

    <View style={{position: 'absolute', height:100, left: 0, right: 0, bottom: 80}}> <View style={{ flex: 1, flexDirection: 'row', alignItems: 'center', justifyContent: 'center' }}> <Text> Nice Job !</Text> </View> </View>

    i.e. Use position: 'absolute' and bottom: 80 [height of the footer]

Add a new comment.