reflex-dom-0.3: Functional Reactive Web Apps with Reflex

Safe HaskellNone
LanguageHaskell98

Reflex.Dom.Widget.Resize

Synopsis

Documentation

resizeDetector :: MonadWidget t m => m a -> m (Event t (), a) Source

A widget that wraps the given widget in a div and fires an event when resized. Adapted from github.commarcjcss-element-queries

resizeDetectorWithStyle Source

Arguments

:: MonadWidget t m 
=> String

A css style string. Warning: It should not contain the "position" style attribute.

-> m a

The embedded widget

-> m (Event t (), a)

An Event that fires on resize, and the result of the embedded widget