Deskripsi:

Fix: ViewWrapper tinggi footer
Style: Constan value untuk tinggi footer per OS

# No Issue
This commit is contained in:
2025-07-15 15:30:11 +08:00
parent 9999f78ed4
commit e68d366d49
3 changed files with 15 additions and 2 deletions

View File

@@ -1,4 +1,9 @@
import { Platform } from "react-native";
export {
OS_ANDROID_HEIGHT,
OS_IOS_HEIGHT,
OS_HEIGHT,
TEXT_SIZE_SMALL,
TEXT_SIZE_MEDIUM,
TEXT_SIZE_LARGE,
@@ -13,6 +18,11 @@ export {
PADDING_LARGE,
};
// OS Height
const OS_ANDROID_HEIGHT = 115
const OS_IOS_HEIGHT = 65
const OS_HEIGHT = Platform.OS === "ios" ? OS_IOS_HEIGHT : OS_ANDROID_HEIGHT
// Text Size
const TEXT_SIZE_SMALL = 12;
const TEXT_SIZE_MEDIUM = 14;