16 lines
393 B
JavaScript
16 lines
393 B
JavaScript
// @flow
|
|
|
|
import { Platform, Dimensions } from "react-native";
|
|
|
|
import variable from "./../variables/platform";
|
|
|
|
const deviceHeight = Dimensions.get("window").height;
|
|
export default (variables /*: * */ = variable) => {
|
|
const theme = {
|
|
flex: 1,
|
|
height: Platform.OS === "ios" ? deviceHeight : deviceHeight - 20,
|
|
backgroundColor: variables.containerBgColor
|
|
};
|
|
|
|
return theme;
|
|
};
|