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

https://github.com/robinpowered/glamorous-native-orientation

Declarative orientation style addons for glamorous-native
https://github.com/robinpowered/glamorous-native-orientation

Last synced: 4 months ago
JSON representation

Declarative orientation style addons for glamorous-native

Awesome Lists containing this project

README

          

# glamorous-native-orientation

A declarative orientation style addon for `glamorous-native`

## Example
```js
const OrientationThemeProvider = withOrientation(ThemeProvider)

const OrientationStyledComponent = glamorous.view(
portraitStyle({fontSize: 24}),
landscapeStyle({fontSize: 36})
)

...


{`I'm large on landscape, and small on portrait`}

```