{-# LANGUAGE OverloadedStrings #-}
module Miso.Native.X.Element.Viewpager.Property
(
androidAlwaysOverscroll_
, androidForceCanScroll_
, bounces_
, enableScroll_
, initialSelectIndex_
, iosGestureDirection_
, iosGestureOffset_
, iosRecognizedGestureClass_
, iosRecognizedViewTag_
, keepItemView_
) where
import Miso.String (MisoString)
import Miso.Types (Attribute)
import Miso.Property
androidAlwaysOverscroll_ :: Bool -> Attribute model action
androidAlwaysOverscroll_ :: forall model action. Bool -> Attribute model action
androidAlwaysOverscroll_ = Text -> Bool -> Attribute model action
forall model action. Text -> Bool -> Attribute model action
boolProp Text
"android-always-overscroll"
androidForceCanScroll_ :: Bool -> Attribute model action
androidForceCanScroll_ :: forall model action. Bool -> Attribute model action
androidForceCanScroll_ = Text -> Bool -> Attribute model action
forall model action. Text -> Bool -> Attribute model action
boolProp Text
"android-force-can-scroll"
bounces_ :: Bool -> Attribute model action
bounces_ :: forall model action. Bool -> Attribute model action
bounces_ = Text -> Bool -> Attribute model action
forall model action. Text -> Bool -> Attribute model action
boolProp Text
"bounces"
enableScroll_ :: Bool -> Attribute model action
enableScroll_ :: forall model action. Bool -> Attribute model action
enableScroll_ = Text -> Bool -> Attribute model action
forall model action. Text -> Bool -> Attribute model action
boolProp Text
"enable-scroll"
initialSelectIndex_ :: Int -> Attribute model action
initialSelectIndex_ :: forall model action. Int -> Attribute model action
initialSelectIndex_ = Text -> Int -> Attribute model action
forall model action. Text -> Int -> Attribute model action
intProp Text
"initial-select-index"
iosGestureDirection_ :: Bool -> Attribute model action
iosGestureDirection_ :: forall model action. Bool -> Attribute model action
iosGestureDirection_ = Text -> Bool -> Attribute model action
forall model action. Text -> Bool -> Attribute model action
boolProp Text
"ios-gesture-direction"
iosGestureOffset_ :: Int -> Attribute model action
iosGestureOffset_ :: forall model action. Int -> Attribute model action
iosGestureOffset_ = Text -> Int -> Attribute model action
forall model action. Text -> Int -> Attribute model action
intProp Text
"ios-gesture-offset"
iosRecognizedGestureClass_ :: MisoString -> Attribute model action
iosRecognizedGestureClass_ :: forall model action. Text -> Attribute model action
iosRecognizedGestureClass_ = Text -> Text -> Attribute model action
forall model action. Text -> Text -> Attribute model action
textProp Text
"ios-recognized-gesture-class"
iosRecognizedViewTag_ :: Int -> Attribute model action
iosRecognizedViewTag_ :: forall model action. Int -> Attribute model action
iosRecognizedViewTag_ = Text -> Int -> Attribute model action
forall model action. Text -> Int -> Attribute model action
intProp Text
"ios-recognized-view-tag"
keepItemView_ :: Bool -> Attribute model action
keepItemView_ :: forall model action. Bool -> Attribute model action
keepItemView_ = Text -> Bool -> Attribute model action
forall model action. Text -> Bool -> Attribute model action
boolProp Text
"keep-item-view"