An open API service indexing awesome lists of open source software.

https://github.com/heineiuo/react-native-platform-color

PlatformColor for react-native-web
https://github.com/heineiuo/react-native-platform-color

react react-native

Last synced: 3 months ago
JSON representation

PlatformColor for react-native-web

Awesome Lists containing this project

README

          

# React Native PlatformColor

A `PlatformColor` shim for react-native-web (Did not implement `PlatformColor` yet).

If Platform.OS is not web, use native `PlatformColor` instead.

```tsx

import { PlatformColor } from 'react-native-platform-color'

// in light mode
const systemBackground = PlatformColor('systemBackground') // `rgba(255,255,255, 1) `

// in dark mode
const systemBackground = PlatformColor('systemBackground') // `rgba(0,0,0, 1) `

```