├── .gitignore ├── CONTRIBUTING.md ├── LICENSE ├── Makefile ├── README.md ├── default.nix ├── examples └── draggy │ ├── LICENSE │ ├── default.nix │ ├── reflex-native-draggy.cabal │ ├── src-bin │ └── uikit.hs │ └── src │ └── Reflex │ └── Native │ └── Examples │ └── Draggy.hs ├── host.project ├── hs-uikit ├── LICENSE ├── cbits │ ├── GenericAppDelegate.h │ ├── GenericAppDelegate.m │ ├── GenericGestureRecognizerTarget.h │ ├── GenericGestureRecognizerTarget.m │ ├── GenericView.h │ ├── GenericView.m │ ├── GenericViewController.h │ ├── GenericViewController.m │ ├── MainThread.m │ ├── NSMutableArrayMethods.m │ ├── NSStringMethods.m │ ├── ObjCMethods.m │ ├── UIAccessibilityMethods.m │ ├── UIColorMethods.m │ ├── UIFontMethods.m │ ├── UIGestureRecognizerMethods.m │ ├── UILabelMethods.m │ ├── UIPanGestureRecognizerMethods.m │ ├── UIViewControllerMethods.m │ ├── UIViewMethods.m │ └── UIWindowMethods.m ├── default.nix ├── hs-uikit.cabal └── src │ ├── CoreAnimation.hs │ ├── CoreGraphics.hs │ ├── Foundation.hs │ ├── Foundation │ ├── NSMutableArray.hs │ ├── NSString.hs │ └── Types.hs │ ├── ObjC.hs │ ├── UIKit.hs │ └── UIKit │ ├── Generic │ ├── AppDelegate.hs │ ├── GestureRecognizerTarget.hs │ ├── View.hs │ └── ViewController.hs │ ├── Types.hs │ ├── UIAccessibility.hs │ ├── UIColor.hs │ ├── UIFont.hs │ ├── UIGestureRecognizer.hs │ ├── UILabel.hs │ ├── UIPanGestureRecognizer.hs │ ├── UIView.hs │ ├── UIViewController.hs │ └── UIWindow.hs ├── ios.project ├── reflex-native-test ├── LICENSE ├── reflex-native-test.cabal ├── src │ └── Reflex │ │ └── Native │ │ ├── Test.hs │ │ └── Test │ │ ├── Evaluation.hs │ │ ├── Optics.hs │ │ ├── Runner.hs │ │ ├── Types.hs │ │ └── ViewBuilder.hs └── test │ └── TestViewBuilderSuite.hs ├── reflex-native-uikit ├── LICENSE ├── cbits │ └── UIKitViewBuilder.m ├── reflex-native-uikit.cabal └── src │ └── Reflex │ └── UIKit │ ├── Config.hs │ ├── Conversions.hs │ ├── Layout.hs │ ├── Main.hs │ ├── Specializations.hs │ ├── Style.hs │ └── ViewBuilder.hs ├── reflex-native ├── LICENSE ├── reflex-native.cabal └── src │ └── Reflex │ ├── Native.hs │ └── Native │ ├── AdjustingBuilder.hs │ ├── Color.hs │ ├── Font.hs │ ├── Geometry.hs │ ├── Gesture.hs │ ├── TextConfig.hs │ ├── TextStyle.hs │ ├── ViewBuilder │ └── Class.hs │ ├── ViewConfig.hs │ ├── ViewLayout.hs │ ├── ViewStyle.hs │ └── Widget │ ├── Basic.hs │ └── Customization.hs └── reflex-platform-version.json /.gitignore: -------------------------------------------------------------------------------- 1 | _build/ 2 | result 3 | .ghc.environment.* 4 | -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/README.md -------------------------------------------------------------------------------- /default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/default.nix -------------------------------------------------------------------------------- /examples/draggy/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/examples/draggy/LICENSE -------------------------------------------------------------------------------- /examples/draggy/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/examples/draggy/default.nix -------------------------------------------------------------------------------- /examples/draggy/reflex-native-draggy.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/examples/draggy/reflex-native-draggy.cabal -------------------------------------------------------------------------------- /examples/draggy/src-bin/uikit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/examples/draggy/src-bin/uikit.hs -------------------------------------------------------------------------------- /examples/draggy/src/Reflex/Native/Examples/Draggy.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/examples/draggy/src/Reflex/Native/Examples/Draggy.hs -------------------------------------------------------------------------------- /host.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/host.project -------------------------------------------------------------------------------- /hs-uikit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/LICENSE -------------------------------------------------------------------------------- /hs-uikit/cbits/GenericAppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/GenericAppDelegate.h -------------------------------------------------------------------------------- /hs-uikit/cbits/GenericAppDelegate.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/GenericAppDelegate.m -------------------------------------------------------------------------------- /hs-uikit/cbits/GenericGestureRecognizerTarget.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/GenericGestureRecognizerTarget.h -------------------------------------------------------------------------------- /hs-uikit/cbits/GenericGestureRecognizerTarget.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/GenericGestureRecognizerTarget.m -------------------------------------------------------------------------------- /hs-uikit/cbits/GenericView.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/GenericView.h -------------------------------------------------------------------------------- /hs-uikit/cbits/GenericView.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/GenericView.m -------------------------------------------------------------------------------- /hs-uikit/cbits/GenericViewController.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/GenericViewController.h -------------------------------------------------------------------------------- /hs-uikit/cbits/GenericViewController.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/GenericViewController.m -------------------------------------------------------------------------------- /hs-uikit/cbits/MainThread.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/MainThread.m -------------------------------------------------------------------------------- /hs-uikit/cbits/NSMutableArrayMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/NSMutableArrayMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/NSStringMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/NSStringMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/ObjCMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/ObjCMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UIAccessibilityMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UIAccessibilityMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UIColorMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UIColorMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UIFontMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UIFontMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UIGestureRecognizerMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UIGestureRecognizerMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UILabelMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UILabelMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UIPanGestureRecognizerMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UIPanGestureRecognizerMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UIViewControllerMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UIViewControllerMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UIViewMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UIViewMethods.m -------------------------------------------------------------------------------- /hs-uikit/cbits/UIWindowMethods.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/cbits/UIWindowMethods.m -------------------------------------------------------------------------------- /hs-uikit/default.nix: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/default.nix -------------------------------------------------------------------------------- /hs-uikit/hs-uikit.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/hs-uikit.cabal -------------------------------------------------------------------------------- /hs-uikit/src/CoreAnimation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/CoreAnimation.hs -------------------------------------------------------------------------------- /hs-uikit/src/CoreGraphics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/CoreGraphics.hs -------------------------------------------------------------------------------- /hs-uikit/src/Foundation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/Foundation.hs -------------------------------------------------------------------------------- /hs-uikit/src/Foundation/NSMutableArray.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/Foundation/NSMutableArray.hs -------------------------------------------------------------------------------- /hs-uikit/src/Foundation/NSString.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/Foundation/NSString.hs -------------------------------------------------------------------------------- /hs-uikit/src/Foundation/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/Foundation/Types.hs -------------------------------------------------------------------------------- /hs-uikit/src/ObjC.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/ObjC.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/Generic/AppDelegate.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/Generic/AppDelegate.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/Generic/GestureRecognizerTarget.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/Generic/GestureRecognizerTarget.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/Generic/View.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/Generic/View.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/Generic/ViewController.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/Generic/ViewController.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/Types.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UIAccessibility.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UIAccessibility.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UIColor.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UIColor.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UIFont.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UIFont.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UIGestureRecognizer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UIGestureRecognizer.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UILabel.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UILabel.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UIPanGestureRecognizer.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UIPanGestureRecognizer.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UIView.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UIView.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UIViewController.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UIViewController.hs -------------------------------------------------------------------------------- /hs-uikit/src/UIKit/UIWindow.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/hs-uikit/src/UIKit/UIWindow.hs -------------------------------------------------------------------------------- /ios.project: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/ios.project -------------------------------------------------------------------------------- /reflex-native-test/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/LICENSE -------------------------------------------------------------------------------- /reflex-native-test/reflex-native-test.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/reflex-native-test.cabal -------------------------------------------------------------------------------- /reflex-native-test/src/Reflex/Native/Test.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/src/Reflex/Native/Test.hs -------------------------------------------------------------------------------- /reflex-native-test/src/Reflex/Native/Test/Evaluation.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/src/Reflex/Native/Test/Evaluation.hs -------------------------------------------------------------------------------- /reflex-native-test/src/Reflex/Native/Test/Optics.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/src/Reflex/Native/Test/Optics.hs -------------------------------------------------------------------------------- /reflex-native-test/src/Reflex/Native/Test/Runner.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/src/Reflex/Native/Test/Runner.hs -------------------------------------------------------------------------------- /reflex-native-test/src/Reflex/Native/Test/Types.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/src/Reflex/Native/Test/Types.hs -------------------------------------------------------------------------------- /reflex-native-test/src/Reflex/Native/Test/ViewBuilder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/src/Reflex/Native/Test/ViewBuilder.hs -------------------------------------------------------------------------------- /reflex-native-test/test/TestViewBuilderSuite.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-test/test/TestViewBuilderSuite.hs -------------------------------------------------------------------------------- /reflex-native-uikit/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/LICENSE -------------------------------------------------------------------------------- /reflex-native-uikit/cbits/UIKitViewBuilder.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/cbits/UIKitViewBuilder.m -------------------------------------------------------------------------------- /reflex-native-uikit/reflex-native-uikit.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/reflex-native-uikit.cabal -------------------------------------------------------------------------------- /reflex-native-uikit/src/Reflex/UIKit/Config.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/src/Reflex/UIKit/Config.hs -------------------------------------------------------------------------------- /reflex-native-uikit/src/Reflex/UIKit/Conversions.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/src/Reflex/UIKit/Conversions.hs -------------------------------------------------------------------------------- /reflex-native-uikit/src/Reflex/UIKit/Layout.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/src/Reflex/UIKit/Layout.hs -------------------------------------------------------------------------------- /reflex-native-uikit/src/Reflex/UIKit/Main.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/src/Reflex/UIKit/Main.hs -------------------------------------------------------------------------------- /reflex-native-uikit/src/Reflex/UIKit/Specializations.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/src/Reflex/UIKit/Specializations.hs -------------------------------------------------------------------------------- /reflex-native-uikit/src/Reflex/UIKit/Style.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/src/Reflex/UIKit/Style.hs -------------------------------------------------------------------------------- /reflex-native-uikit/src/Reflex/UIKit/ViewBuilder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native-uikit/src/Reflex/UIKit/ViewBuilder.hs -------------------------------------------------------------------------------- /reflex-native/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/LICENSE -------------------------------------------------------------------------------- /reflex-native/reflex-native.cabal: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/reflex-native.cabal -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/AdjustingBuilder.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/AdjustingBuilder.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/Color.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/Color.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/Font.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/Font.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/Geometry.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/Geometry.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/Gesture.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/Gesture.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/TextConfig.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/TextConfig.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/TextStyle.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/TextStyle.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/ViewBuilder/Class.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/ViewBuilder/Class.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/ViewConfig.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/ViewConfig.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/ViewLayout.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/ViewLayout.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/ViewStyle.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/ViewStyle.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/Widget/Basic.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/Widget/Basic.hs -------------------------------------------------------------------------------- /reflex-native/src/Reflex/Native/Widget/Customization.hs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-native/src/Reflex/Native/Widget/Customization.hs -------------------------------------------------------------------------------- /reflex-platform-version.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/reflex-frp/reflex-native/HEAD/reflex-platform-version.json --------------------------------------------------------------------------------