Rework web shell ui

This commit is contained in:
Paul Frazee
2023-02-22 23:37:14 -06:00
parent cfd563c782
commit e6d22bdf90
5 changed files with 192 additions and 107 deletions
+6
View File
@@ -0,0 +1,6 @@
import {useColorScheme} from 'react-native'
export function useColorSchemeStyle(lightStyle: any, darkStyle: any) {
const colorScheme = useColorScheme()
return colorScheme === 'dark' ? darkStyle : lightStyle
}