mirror of
https://github.com/austinried/subtracks.git
synced 2025-12-27 17:19:27 +01:00
15 lines
222 B
TypeScript
15 lines
222 B
TypeScript
import { StatusBar } from 'react-native'
|
|
|
|
const header = 56
|
|
const tabBar = 54
|
|
|
|
const top = () => header + (StatusBar.currentHeight || 0)
|
|
const bottom = () => tabBar
|
|
|
|
export default {
|
|
header,
|
|
tabBar,
|
|
top,
|
|
bottom,
|
|
}
|