I try to create react native app that looks like existing web app. I have a fixed footer at bottom of window. Do anyone have idea how this can be achieved with react native?
import {Dimensions} from 'react-native' const WIDTH = Dimensions.get('window').width; const HEIGHT = Dimensions.get('window').height;
then on the write this styles
position: 'absolute', top: HEIGHT-80, left: 0, right: 0,
worked like a charm