Last active
October 9, 2017 14:12
-
-
Save ysfzrn/15b47323a4cd3666e3924ec82d8d06e4 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//src/util/SharedStyle.js | |
import { Dimensions, Platform } from "react-native"; | |
const { width, height } = Dimensions.get("window"); | |
function definiteWidth(width){ | |
const reminder = width % 10; | |
if( reminder !== 0 ){ | |
return width - reminder; | |
}else{ | |
return width; | |
} | |
} | |
function definiteHeight(height){ | |
const reminder = height % 10; | |
if( reminder !== 0 ){ | |
return height - reminder - 130; | |
}else{ | |
return height; | |
} | |
} | |
const SharedStyle ={ | |
color:{ | |
primary:'#122210', | |
primaryBlack:'#223D1D', | |
secondary:'#F9FF1C', | |
snake:'#4CAF50', | |
scoreColor: 'yellow', | |
buttonBackground: '#000000' | |
}, | |
board:{ | |
height: definiteHeight(height), | |
width: definiteWidth(width), | |
}, | |
segment:{ | |
width:10, | |
height:10, | |
backgroundColor: '#4CAF50', | |
borderWidth:1, | |
borderColor: '#285A2A', | |
}, | |
food: { | |
width: 10, | |
height: 10, | |
backgroundColor: 'red', | |
borderWidth:1, | |
borderColor: 'black', | |
}, | |
scoreBoard: { | |
height: 34, | |
} | |
} | |
export default SharedStyle |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment