Skip to content

Commit e43d876

Browse files
committed
temporary fallback for red, green, and label color-helpers types
1 parent 5c5513d commit e43d876

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

modules/colors/platform.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@ const TEMP_ANDROID_PLACEHOLDER = PlatformColor('?attr/colorAccent')
2121
export const label = Platform.select({
2222
ios: PlatformColor('label'),
2323
android: TEMP_ANDROID_PLACEHOLDER,
24+
default: TEMP_ANDROID_PLACEHOLDER,
2425
})
2526

2627
/**
@@ -300,6 +301,7 @@ export const systemCyan = Platform.select({
300301
export const systemGreen = Platform.select({
301302
ios: PlatformColor('systemGreen'),
302303
android: TEMP_ANDROID_PLACEHOLDER,
304+
default: TEMP_ANDROID_PLACEHOLDER,
303305
})
304306

305307
/**
@@ -348,6 +350,7 @@ export const systemPurple = Platform.select({
348350
export const systemRed = Platform.select({
349351
ios: PlatformColor('systemRed'),
350352
android: TEMP_ANDROID_PLACEHOLDER,
353+
default: TEMP_ANDROID_PLACEHOLDER,
351354
})
352355

353356
/**

0 commit comments

Comments
 (0)