ohanhi / elm-native-ui

[CLOSED] Experiment: mobile apps in Elm using React Native.
BSD 3-Clause "New" or "Revised" License
1.54k stars 76 forks source link

Add Dimensions module to get the window size #67

Closed iancanderson closed 7 years ago

iancanderson commented 7 years ago

This is useful, for example, to implement "responsive" styles by scaling values up/down based on the screen size.

Usage:

import NativeApi.Dimensions exposing (window)

windowHeight =
    window.height

windowWidth =
    window.width
ohanhi commented 7 years ago

Thanks!