You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
9 lines
472 B
9 lines
472 B
// NOTE: The default React Native styling doesn't support server rendering.
|
|
// Server rendered styles should not change between the first render of the HTML
|
|
// and the first render on the client. Typically, web developers will use CSS media queries
|
|
// to render different styles on the client and server, these aren't directly supported in React Native
|
|
// but can be achieved using a styling library like Nativewind.
|
|
export function useColorScheme() {
|
|
return 'light';
|
|
}
|