{-# 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_ = MisoString -> Bool -> Attribute model action
forall model action. MisoString -> Bool -> Attribute model action
boolProp MisoString
"android-always-overscroll"
androidForceCanScroll_ :: Bool -> Attribute model action
androidForceCanScroll_ :: forall model action. Bool -> Attribute model action
androidForceCanScroll_ = MisoString -> Bool -> Attribute model action
forall model action. MisoString -> Bool -> Attribute model action
boolProp MisoString
"android-force-can-scroll"
bounces_ :: Bool -> Attribute model action
bounces_ :: forall model action. Bool -> Attribute model action
bounces_ = MisoString -> Bool -> Attribute model action
forall model action. MisoString -> Bool -> Attribute model action
boolProp MisoString
"bounces"
enableScroll_ :: Bool -> Attribute model action
enableScroll_ :: forall model action. Bool -> Attribute model action
enableScroll_ = MisoString -> Bool -> Attribute model action
forall model action. MisoString -> Bool -> Attribute model action
boolProp MisoString
"enable-scroll"
initialSelectIndex_ :: Int -> Attribute model action
initialSelectIndex_ :: forall model action. Int -> Attribute model action
initialSelectIndex_ = MisoString -> Int -> Attribute model action
forall model action. MisoString -> Int -> Attribute model action
intProp MisoString
"initial-select-index"
iosGestureDirection_ :: Bool -> Attribute model action
iosGestureDirection_ :: forall model action. Bool -> Attribute model action
iosGestureDirection_ = MisoString -> Bool -> Attribute model action
forall model action. MisoString -> Bool -> Attribute model action
boolProp MisoString
"ios-gesture-direction"
iosGestureOffset_ :: Int -> Attribute model action
iosGestureOffset_ :: forall model action. Int -> Attribute model action
iosGestureOffset_ = MisoString -> Int -> Attribute model action
forall model action. MisoString -> Int -> Attribute model action
intProp MisoString
"ios-gesture-offset"
iosRecognizedGestureClass_ :: MisoString -> Attribute model action
iosRecognizedGestureClass_ :: forall model action. MisoString -> Attribute model action
iosRecognizedGestureClass_ = MisoString -> MisoString -> Attribute model action
forall model action.
MisoString -> MisoString -> Attribute model action
textProp MisoString
"ios-recognized-gesture-class"
iosRecognizedViewTag_ :: Int -> Attribute model action
iosRecognizedViewTag_ :: forall model action. Int -> Attribute model action
iosRecognizedViewTag_ = MisoString -> Int -> Attribute model action
forall model action. MisoString -> Int -> Attribute model action
intProp MisoString
"ios-recognized-view-tag"
keepItemView_ :: Bool -> Attribute model action
keepItemView_ :: forall model action. Bool -> Attribute model action
keepItemView_ = MisoString -> Bool -> Attribute model action
forall model action. MisoString -> Bool -> Attribute model action
boolProp MisoString
"keep-item-view"