blob: a120915977d0927eb40d30b808c93016dfe54592 (
plain)
1
2
3
4
5
6
7
|
import { Platform } from 'react-native';
export class UIConstants {
static AppbarHeight = Platform.OS === 'ios' ? 44 : 56;
static StatusbarHeight = Platform.OS === 'ios' ? 20 : 0;
static HeaderHeight = UIConstants.AppbarHeight + UIConstants.StatusbarHeight;
}
|