pythonnative 0.40.0__cp313-cp313-win_amd64.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- pythonnative/__init__.py +411 -0
- pythonnative/_ios_log.py +92 -0
- pythonnative/_yoga.cp313-win_amd64.pyd +0 -0
- pythonnative/alerts.py +236 -0
- pythonnative/animated.py +1687 -0
- pythonnative/animation_graph.py +78 -0
- pythonnative/appearance.py +124 -0
- pythonnative/bootstrap.py +100 -0
- pythonnative/bridge/__init__.py +302 -0
- pythonnative/bridge/android.py +78 -0
- pythonnative/bridge/codec.py +170 -0
- pythonnative/bridge/commits.py +114 -0
- pythonnative/bridge/fake.py +243 -0
- pythonnative/bridge/ios.py +138 -0
- pythonnative/bridge/web.py +489 -0
- pythonnative/cli/__init__.py +7 -0
- pythonnative/cli/pn.py +1214 -0
- pythonnative/component.py +271 -0
- pythonnative/components/__init__.py +111 -0
- pythonnative/components/_base.py +166 -0
- pythonnative/components/controls.py +521 -0
- pythonnative/components/layout.py +518 -0
- pythonnative/components/lists.py +785 -0
- pythonnative/components/media.py +204 -0
- pythonnative/components/overlays.py +107 -0
- pythonnative/components/pressable.py +252 -0
- pythonnative/components/structural.py +167 -0
- pythonnative/components/text.py +291 -0
- pythonnative/devclient.py +824 -0
- pythonnative/devserver/__init__.py +34 -0
- pythonnative/devserver/server.py +718 -0
- pythonnative/devserver/static/animation_graph.js +82 -0
- pythonnative/devserver/static/bridge.js +147 -0
- pythonnative/devserver/static/colors.js +70 -0
- pythonnative/devserver/static/host.js +552 -0
- pythonnative/devserver/static/index.html +60 -0
- pythonnative/devserver/static/layout.js +85 -0
- pythonnative/devserver/static/preview.css +415 -0
- pythonnative/devserver/static/renderer.js +1994 -0
- pythonnative/devserver/static/shell.js +345 -0
- pythonnative/devserver/static/yoga/LICENSE +21 -0
- pythonnative/devserver/static/yoga/binaries/yoga-wasm-base64-esm.js +75 -0
- pythonnative/devserver/static/yoga/src/generated/YGEnums.d.ts +189 -0
- pythonnative/devserver/static/yoga/src/generated/YGEnums.js +211 -0
- pythonnative/devserver/static/yoga/src/generated/YGEnums.js.map +1 -0
- pythonnative/devserver/static/yoga/src/index.d.ts +12 -0
- pythonnative/devserver/static/yoga/src/index.js +16 -0
- pythonnative/devserver/static/yoga/src/index.js.map +1 -0
- pythonnative/devserver/static/yoga/src/load.d.ts +11 -0
- pythonnative/devserver/static/yoga/src/load.js +17 -0
- pythonnative/devserver/static/yoga/src/load.js.map +1 -0
- pythonnative/devserver/static/yoga/src/wrapAssembly.d.ts +155 -0
- pythonnative/devserver/static/yoga/src/wrapAssembly.js +125 -0
- pythonnative/devserver/static/yoga/src/wrapAssembly.js.map +1 -0
- pythonnative/devserver/watcher.py +267 -0
- pythonnative/devserver/ws.py +421 -0
- pythonnative/diagnostics.py +241 -0
- pythonnative/element.py +159 -0
- pythonnative/equality.py +19 -0
- pythonnative/events.py +231 -0
- pythonnative/gestures.py +1333 -0
- pythonnative/hooks.py +1621 -0
- pythonnative/hosts/__init__.py +63 -0
- pythonnative/hosts/base.py +596 -0
- pythonnative/hosts/native.py +302 -0
- pythonnative/hot_reload.py +585 -0
- pythonnative/layout.py +328 -0
- pythonnative/mutations.py +142 -0
- pythonnative/native/android/build.gradle +52 -0
- pythonnative/native/android/gradle.properties +3 -0
- pythonnative/native/android/settings.gradle +12 -0
- pythonnative/native/android/src/main/AndroidManifest.xml +11 -0
- pythonnative/native/android/src/main/cpp/CMakeLists.txt +9 -0
- pythonnative/native/android/src/main/cpp/yoga_jni.cpp +52 -0
- pythonnative/native/android/src/main/java/com/pythonnative/generated/NativeModules.kt +5 -0
- pythonnative/native/android/src/main/java/com/pythonnative/generated/NativeProps.kt +3705 -0
- pythonnative/native/android/src/main/java/com/pythonnative/generated/PNContracts.kt +129 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/PNBridge.kt +261 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/PythonHost.kt +20 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/animation/AnimationGraph.kt +108 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/animation/AnimationSpecs.kt +141 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/animation/PNAnimator.kt +257 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/CommitState.kt +106 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/JsonUtil.kt +175 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/MainThread.kt +40 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/PNLog.kt +33 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/PNRegistry.kt +82 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/PNTransaction.kt +80 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/TransactionApplier.kt +117 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/ViewRegistry.kt +74 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/BuiltinComponents.kt +37 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ButtonManager.kt +32 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ComponentManager.kt +213 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ContainerManagers.kt +69 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ControlManagers.kt +186 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/DatePickerManager.kt +123 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ImageLoader.kt +141 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ImageManager.kt +162 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ModalManager.kt +134 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/PNColor.kt +201 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/PickerManager.kt +86 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/PortalManager.kt +55 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/PressableManager.kt +122 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ScreenStackManager.kt +110 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ScrollViewManager.kt +214 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/SegmentedControlManager.kt +113 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/StatusBarManager.kt +52 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/TabBarManager.kt +131 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/TextInputManager.kt +250 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/TextManager.kt +233 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ViewStyler.kt +355 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/VirtualListManager.kt +159 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/WebViewManager.kt +149 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/gestures/GestureArbiter.kt +233 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/gestures/GestureCoordinator.kt +127 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/gestures/GestureRecognizers.kt +527 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/layout/NativeLayout.kt +145 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/layout/YogaNode.kt +29 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/BuiltinModules.kt +73 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/DeviceModules.kt +316 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/HostModule.kt +61 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/MediaModules.kt +200 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/NativeModule.kt +158 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/NotificationsModule.kt +100 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/PermissionsModule.kt +99 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/StorageModules.kt +89 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/SystemModules.kt +178 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/plugins/GeneratedPlugins.kt +16 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/screens/PNScreenFragment.kt +188 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/screens/ScreenRegistry.kt +80 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/views/PNAccessibilityDelegate.kt +48 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/views/PNBorderDrawable.kt +76 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/views/PNEditText.kt +18 -0
- pythonnative/native/android/src/main/java/com/pythonnative/runtime/views/PNFrameLayout.kt +49 -0
- pythonnative/native/android/src/test/java/com/pythonnative/runtime/AnimationSpecsTest.kt +75 -0
- pythonnative/native/android/src/test/java/com/pythonnative/runtime/GestureArbiterTest.kt +197 -0
- pythonnative/native/android/src/test/java/com/pythonnative/runtime/PNColorTest.kt +47 -0
- pythonnative/native/android/src/test/java/com/pythonnative/runtime/PNTransactionTest.kt +78 -0
- pythonnative/native/android/src/test/java/com/pythonnative/runtime/PromiseTest.kt +89 -0
- pythonnative/native/ios/Package.swift +23 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Animation/PNAnimationGraph.swift +199 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Animation/PNAnimator.swift +312 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNBridge.swift +255 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNCommit.swift +104 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNRegistry.swift +142 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNTransaction.swift +166 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNViewRegistry.swift +53 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNButtonManagers.swift +207 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNColor.swift +173 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNComponentManager.swift +183 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNContainerView.swift +56 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNControlManagers.swift +281 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNImageManager.swift +222 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNOverlayManagers.swift +243 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNPressableManager.swift +114 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNScreenStackManager.swift +107 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNScrollViewManager.swift +197 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNTabBarManager.swift +106 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNTextInputManager.swift +297 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNTextManager.swift +230 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNTransform.swift +82 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNViewManager.swift +86 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNViewState.swift +87 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNViewStyler.swift +340 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNVirtualListManager.swift +155 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Components/PNWebViewManager.swift +124 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Generated/NativeModules.swift +1 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Generated/NativeProps.swift +3775 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Generated/PNContracts.swift +46 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Gestures/PNGestureCoordinator.swift +260 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Layout/PNLayout.swift +173 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Modules/AlertModule.swift +92 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Modules/HostModule.swift +80 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Modules/LifecycleModules.swift +174 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Modules/MediaModules.swift +177 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Modules/PNNativeModule.swift +168 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Modules/PermissionModules.swift +266 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Modules/SystemModules.swift +251 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Plugins/PNPluginRegistration.swift +8 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Screens/PNScreenRegistry.swift +46 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Screens/PNViewController.swift +237 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Support/PNCompat.swift +46 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Support/PNJSON.swift +173 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Support/PNLog.swift +47 -0
- pythonnative/native/ios/Sources/PythonNativeKit/Support/PNWindow.swift +51 -0
- pythonnative/native/ios/Tests/PythonNativeKitTests/PNAnimationGraphTests.swift +26 -0
- pythonnative/native/ios/Tests/PythonNativeKitTests/PNColorTests.swift +50 -0
- pythonnative/native/ios/Tests/PythonNativeKitTests/PNCommitTests.swift +86 -0
- pythonnative/native/ios/Tests/PythonNativeKitTests/PNGestureTests.swift +101 -0
- pythonnative/native/ios/Tests/PythonNativeKitTests/PNManagerTests.swift +126 -0
- pythonnative/native/ios/Tests/PythonNativeKitTests/PNModuleTests.swift +111 -0
- pythonnative/native/ios/Tests/PythonNativeKitTests/PNTransactionTests.swift +91 -0
- pythonnative/native/yoga/LICENSE +21 -0
- pythonnative/native/yoga/Package.swift +9 -0
- pythonnative/native/yoga/VENDORED.md +2 -0
- pythonnative/native/yoga/include/PNStyle.h +10 -0
- pythonnative/native/yoga/include/module.modulemap +5 -0
- pythonnative/native/yoga/include/yoga/YGConfig.h +158 -0
- pythonnative/native/yoga/include/yoga/YGEnums.h +142 -0
- pythonnative/native/yoga/include/yoga/YGMacros.h +99 -0
- pythonnative/native/yoga/include/yoga/YGNode.h +304 -0
- pythonnative/native/yoga/include/yoga/YGNodeLayout.h +35 -0
- pythonnative/native/yoga/include/yoga/YGNodeStyle.h +130 -0
- pythonnative/native/yoga/include/yoga/YGPixelGrid.h +29 -0
- pythonnative/native/yoga/include/yoga/YGValue.h +84 -0
- pythonnative/native/yoga/include/yoga/Yoga.h +21 -0
- pythonnative/native/yoga/python.cpp +16 -0
- pythonnative/native/yoga/style.cpp +272 -0
- pythonnative/native/yoga/yoga/CMakeLists.txt +41 -0
- pythonnative/native/yoga/yoga/YGConfig.cpp +92 -0
- pythonnative/native/yoga/yoga/YGConfig.h +158 -0
- pythonnative/native/yoga/yoga/YGEnums.cpp +262 -0
- pythonnative/native/yoga/yoga/YGEnums.h +142 -0
- pythonnative/native/yoga/yoga/YGMacros.h +99 -0
- pythonnative/native/yoga/yoga/YGNode.cpp +366 -0
- pythonnative/native/yoga/yoga/YGNode.h +304 -0
- pythonnative/native/yoga/yoga/YGNodeLayout.cpp +92 -0
- pythonnative/native/yoga/yoga/YGNodeLayout.h +35 -0
- pythonnative/native/yoga/yoga/YGNodeStyle.cpp +405 -0
- pythonnative/native/yoga/yoga/YGNodeStyle.h +130 -0
- pythonnative/native/yoga/yoga/YGPixelGrid.cpp +22 -0
- pythonnative/native/yoga/yoga/YGPixelGrid.h +29 -0
- pythonnative/native/yoga/yoga/YGValue.cpp +20 -0
- pythonnative/native/yoga/yoga/YGValue.h +84 -0
- pythonnative/native/yoga/yoga/Yoga.h +21 -0
- pythonnative/native/yoga/yoga/algorithm/AbsoluteLayout.cpp +563 -0
- pythonnative/native/yoga/yoga/algorithm/AbsoluteLayout.h +41 -0
- pythonnative/native/yoga/yoga/algorithm/Align.h +72 -0
- pythonnative/native/yoga/yoga/algorithm/Baseline.cpp +78 -0
- pythonnative/native/yoga/yoga/algorithm/Baseline.h +21 -0
- pythonnative/native/yoga/yoga/algorithm/BoundAxis.h +79 -0
- pythonnative/native/yoga/yoga/algorithm/Cache.cpp +121 -0
- pythonnative/native/yoga/yoga/algorithm/Cache.h +30 -0
- pythonnative/native/yoga/yoga/algorithm/CalculateLayout.cpp +2428 -0
- pythonnative/native/yoga/yoga/algorithm/CalculateLayout.h +38 -0
- pythonnative/native/yoga/yoga/algorithm/FlexDirection.h +120 -0
- pythonnative/native/yoga/yoga/algorithm/FlexLine.cpp +124 -0
- pythonnative/native/yoga/yoga/algorithm/FlexLine.h +75 -0
- pythonnative/native/yoga/yoga/algorithm/PixelGrid.cpp +132 -0
- pythonnative/native/yoga/yoga/algorithm/PixelGrid.h +29 -0
- pythonnative/native/yoga/yoga/algorithm/SizingMode.h +73 -0
- pythonnative/native/yoga/yoga/algorithm/TrailingPosition.h +44 -0
- pythonnative/native/yoga/yoga/config/Config.cpp +135 -0
- pythonnative/native/yoga/yoga/config/Config.h +92 -0
- pythonnative/native/yoga/yoga/debug/AssertFatal.cpp +53 -0
- pythonnative/native/yoga/yoga/debug/AssertFatal.h +29 -0
- pythonnative/native/yoga/yoga/debug/Log.cpp +107 -0
- pythonnative/native/yoga/yoga/debug/Log.h +34 -0
- pythonnative/native/yoga/yoga/enums/Align.h +47 -0
- pythonnative/native/yoga/yoga/enums/BoxSizing.h +40 -0
- pythonnative/native/yoga/yoga/enums/Dimension.h +40 -0
- pythonnative/native/yoga/yoga/enums/Direction.h +41 -0
- pythonnative/native/yoga/yoga/enums/Display.h +41 -0
- pythonnative/native/yoga/yoga/enums/Edge.h +47 -0
- pythonnative/native/yoga/yoga/enums/Errata.h +41 -0
- pythonnative/native/yoga/yoga/enums/ExperimentalFeature.h +39 -0
- pythonnative/native/yoga/yoga/enums/FlexDirection.h +42 -0
- pythonnative/native/yoga/yoga/enums/Gutter.h +41 -0
- pythonnative/native/yoga/yoga/enums/Justify.h +44 -0
- pythonnative/native/yoga/yoga/enums/LogLevel.h +44 -0
- pythonnative/native/yoga/yoga/enums/MeasureMode.h +41 -0
- pythonnative/native/yoga/yoga/enums/NodeType.h +40 -0
- pythonnative/native/yoga/yoga/enums/Overflow.h +41 -0
- pythonnative/native/yoga/yoga/enums/PhysicalEdge.h +21 -0
- pythonnative/native/yoga/yoga/enums/PositionType.h +41 -0
- pythonnative/native/yoga/yoga/enums/Unit.h +42 -0
- pythonnative/native/yoga/yoga/enums/Wrap.h +41 -0
- pythonnative/native/yoga/yoga/enums/YogaEnums.h +85 -0
- pythonnative/native/yoga/yoga/event/event.cpp +87 -0
- pythonnative/native/yoga/yoga/event/event.h +130 -0
- pythonnative/native/yoga/yoga/module.modulemap +21 -0
- pythonnative/native/yoga/yoga/node/CachedMeasurement.h +53 -0
- pythonnative/native/yoga/yoga/node/LayoutResults.cpp +48 -0
- pythonnative/native/yoga/yoga/node/LayoutResults.h +122 -0
- pythonnative/native/yoga/yoga/node/LayoutableChildren.h +148 -0
- pythonnative/native/yoga/yoga/node/Node.cpp +443 -0
- pythonnative/native/yoga/yoga/node/Node.h +337 -0
- pythonnative/native/yoga/yoga/numeric/Comparison.h +81 -0
- pythonnative/native/yoga/yoga/numeric/FloatOptional.h +93 -0
- pythonnative/native/yoga/yoga/style/SmallValueBuffer.h +133 -0
- pythonnative/native/yoga/yoga/style/Style.h +757 -0
- pythonnative/native/yoga/yoga/style/StyleLength.h +107 -0
- pythonnative/native/yoga/yoga/style/StyleValueHandle.h +98 -0
- pythonnative/native/yoga/yoga/style/StyleValuePool.h +127 -0
- pythonnative/native_modules/__init__.py +124 -0
- pythonnative/native_modules/app_state.py +99 -0
- pythonnative/native_modules/battery.py +75 -0
- pythonnative/native_modules/biometrics.py +42 -0
- pythonnative/native_modules/camera.py +65 -0
- pythonnative/native_modules/clipboard.py +46 -0
- pythonnative/native_modules/fallback.py +324 -0
- pythonnative/native_modules/file_system.py +145 -0
- pythonnative/native_modules/haptics.py +75 -0
- pythonnative/native_modules/linking.py +123 -0
- pythonnative/native_modules/location.py +75 -0
- pythonnative/native_modules/net_info.py +112 -0
- pythonnative/native_modules/notifications.py +129 -0
- pythonnative/native_modules/permissions.py +108 -0
- pythonnative/native_modules/registry.py +526 -0
- pythonnative/native_modules/secure_store.py +52 -0
- pythonnative/native_modules/share.py +51 -0
- pythonnative/native_views/__init__.py +375 -0
- pythonnative/native_views/base.py +316 -0
- pythonnative/native_views/bridge_backend.py +277 -0
- pythonnative/navigation/__init__.py +103 -0
- pythonnative/navigation/container.py +154 -0
- pythonnative/navigation/handle.py +540 -0
- pythonnative/navigation/hooks.py +133 -0
- pythonnative/navigation/host.py +58 -0
- pythonnative/navigation/linking.py +200 -0
- pythonnative/navigation/navigators.py +659 -0
- pythonnative/navigation/screen.py +149 -0
- pythonnative/navigation/state.py +269 -0
- pythonnative/net.py +248 -0
- pythonnative/platform.py +166 -0
- pythonnative/platform_metrics.py +252 -0
- pythonnative/preview.py +287 -0
- pythonnative/profiling.py +101 -0
- pythonnative/project/__init__.py +68 -0
- pythonnative/project/android.py +557 -0
- pythonnative/project/builder.py +817 -0
- pythonnative/project/config.py +773 -0
- pythonnative/project/deps.py +719 -0
- pythonnative/project/devices.py +304 -0
- pythonnative/project/doctor.py +283 -0
- pythonnative/project/fingerprint.py +171 -0
- pythonnative/project/icons.py +247 -0
- pythonnative/project/ios.py +325 -0
- pythonnative/project/lockfile.py +100 -0
- pythonnative/project/permissions.py +361 -0
- pythonnative/project/plugins.py +519 -0
- pythonnative/project/runtime_assets.py +183 -0
- pythonnative/py.typed +0 -0
- pythonnative/query.py +153 -0
- pythonnative/reconciler/__init__.py +29 -0
- pythonnative/reconciler/boundaries.py +375 -0
- pythonnative/reconciler/children.py +88 -0
- pythonnative/reconciler/core.py +1165 -0
- pythonnative/reconciler/layout_pass.py +393 -0
- pythonnative/reconciler/vnode.py +266 -0
- pythonnative/refresh.py +55 -0
- pythonnative/runtime.py +306 -0
- pythonnative/scheduler.py +159 -0
- pythonnative/sdk/__init__.py +153 -0
- pythonnative/sdk/_components.py +427 -0
- pythonnative/sdk/builtins.py +91 -0
- pythonnative/sdk/codegen.py +149 -0
- pythonnative/sdk/module_codegen.py +184 -0
- pythonnative/sdk/schema.py +224 -0
- pythonnative/sdk/templates/contracts.kt +46 -0
- pythonnative/sdk/templates/contracts.swift +46 -0
- pythonnative/storage.py +184 -0
- pythonnative/style.py +841 -0
- pythonnative/suspense.py +183 -0
- pythonnative/templates/android_template/app/build.gradle +75 -0
- pythonnative/templates/android_template/app/proguard-rules.pro +21 -0
- pythonnative/templates/android_template/app/src/androidTest/java/com/pythonnative/android_template/ExampleInstrumentedTest.kt +24 -0
- pythonnative/templates/android_template/app/src/debug/AndroidManifest.xml +7 -0
- pythonnative/templates/android_template/app/src/main/AndroidManifest.xml +32 -0
- pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/MainActivity.kt +130 -0
- pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/ScreenFragment.kt +13 -0
- pythonnative/templates/android_template/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
- pythonnative/templates/android_template/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +30 -0
- pythonnative/templates/android_template/app/src/main/res/layout/activity_main.xml +10 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +6 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +6 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
- pythonnative/templates/android_template/app/src/main/res/navigation/nav_graph.xml +22 -0
- pythonnative/templates/android_template/app/src/main/res/values/colors.xml +5 -0
- pythonnative/templates/android_template/app/src/main/res/values/strings.xml +5 -0
- pythonnative/templates/android_template/app/src/main/res/values/themes.xml +9 -0
- pythonnative/templates/android_template/app/src/main/res/values-night/themes.xml +7 -0
- pythonnative/templates/android_template/app/src/main/res/xml/backup_rules.xml +13 -0
- pythonnative/templates/android_template/app/src/main/res/xml/data_extraction_rules.xml +19 -0
- pythonnative/templates/android_template/app/src/test/java/com/pythonnative/android_template/ExampleUnitTest.kt +17 -0
- pythonnative/templates/android_template/build.gradle +10 -0
- pythonnative/templates/android_template/gradle/wrapper/gradle-wrapper.jar +0 -0
- pythonnative/templates/android_template/gradle/wrapper/gradle-wrapper.properties +6 -0
- pythonnative/templates/android_template/gradle.properties +23 -0
- pythonnative/templates/android_template/gradlew +185 -0
- pythonnative/templates/android_template/gradlew.bat +89 -0
- pythonnative/templates/android_template/settings.gradle +17 -0
- pythonnative/templates/ios_template/ios_template/AppDelegate.swift +51 -0
- pythonnative/templates/ios_template/ios_template/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
- pythonnative/templates/ios_template/ios_template/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
- pythonnative/templates/ios_template/ios_template/Assets.xcassets/Contents.json +6 -0
- pythonnative/templates/ios_template/ios_template/Base.lproj/LaunchScreen.storyboard +25 -0
- pythonnative/templates/ios_template/ios_template/BridgingHeader.h +14 -0
- pythonnative/templates/ios_template/ios_template/Info.plist +28 -0
- pythonnative/templates/ios_template/ios_template/PythonRuntime.swift +390 -0
- pythonnative/templates/ios_template/ios_template/SceneDelegate.swift +61 -0
- pythonnative/templates/ios_template/ios_template/ViewController.swift +23 -0
- pythonnative/templates/ios_template/ios_template.xcodeproj/project.pbxproj +745 -0
- pythonnative/templates/ios_template/ios_template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
- pythonnative/templates/ios_template/ios_templateTests/ios_templateTests.swift +36 -0
- pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITests.swift +41 -0
- pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITestsLaunchTests.swift +32 -0
- pythonnative/testing/__init__.py +53 -0
- pythonnative/testing/backend.py +276 -0
- pythonnative/testing/harness.py +369 -0
- pythonnative/utils.py +145 -0
- pythonnative-0.40.0.dist-info/DELVEWHEEL +2 -0
- pythonnative-0.40.0.dist-info/METADATA +150 -0
- pythonnative-0.40.0.dist-info/RECORD +418 -0
- pythonnative-0.40.0.dist-info/WHEEL +5 -0
- pythonnative-0.40.0.dist-info/entry_points.txt +2 -0
- pythonnative-0.40.0.dist-info/licenses/LICENSE +21 -0
- pythonnative-0.40.0.dist-info/top_level.txt +1 -0
- pythonnative.libs/msvcp140-a4c2229bdc2a2a630acdc095b4d86008.dll +0 -0
|
@@ -0,0 +1,3775 @@
|
|
|
1
|
+
import Foundation
|
|
2
|
+
|
|
3
|
+
// Generated from Python schemas. Regenerate instead of editing.
|
|
4
|
+
public struct ActivityIndicatorProps {
|
|
5
|
+
public let values: [String: Any]
|
|
6
|
+
public init(_ values: [String: Any]) throws {
|
|
7
|
+
self.values = values
|
|
8
|
+
}
|
|
9
|
+
public var width: Any? { values["width"] }
|
|
10
|
+
public var height: Any? { values["height"] }
|
|
11
|
+
public var min_width: Any? { values["min_width"] }
|
|
12
|
+
public var max_width: Any? { values["max_width"] }
|
|
13
|
+
public var min_height: Any? { values["min_height"] }
|
|
14
|
+
public var max_height: Any? { values["max_height"] }
|
|
15
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
16
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
17
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
18
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
19
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
20
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
21
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
22
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
23
|
+
public var align_items: Any? { values["align_items"] }
|
|
24
|
+
public var align_self: Any? { values["align_self"] }
|
|
25
|
+
public var align_content: Any? { values["align_content"] }
|
|
26
|
+
public var direction: Any? { values["direction"] }
|
|
27
|
+
public var display: Any? { values["display"] }
|
|
28
|
+
public var position: Any? { values["position"] }
|
|
29
|
+
public var top: Any? { values["top"] }
|
|
30
|
+
public var right: Any? { values["right"] }
|
|
31
|
+
public var bottom: Any? { values["bottom"] }
|
|
32
|
+
public var left: Any? { values["left"] }
|
|
33
|
+
public var start: Any? { values["start"] }
|
|
34
|
+
public var end: Any? { values["end"] }
|
|
35
|
+
public var padding: Any? { values["padding"] }
|
|
36
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
37
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
38
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
39
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
40
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
41
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
42
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
43
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
44
|
+
public var margin: Any? { values["margin"] }
|
|
45
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
46
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
47
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
48
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
49
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
50
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
51
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
52
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
53
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
54
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
55
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
56
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
57
|
+
public var overflow: Any? { values["overflow"] }
|
|
58
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
59
|
+
public var color: Any? { values["color"] }
|
|
60
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
61
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
62
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
63
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
64
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
65
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
66
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
67
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
68
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
69
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
70
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
71
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
72
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
73
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
74
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
75
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
76
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
77
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
78
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
79
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
80
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
81
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
82
|
+
public var text_align: Any? { values["text_align"] }
|
|
83
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
84
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
85
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
86
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
87
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
88
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
89
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
90
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
91
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
92
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
93
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
94
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
95
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
96
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
97
|
+
public var transform: Any? { values["transform"] }
|
|
98
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
99
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
100
|
+
public var animating: Bool? { values["animating"] as? Bool }
|
|
101
|
+
public var size: Any? { values["size"] }
|
|
102
|
+
public var ref: Any? { values["ref"] }
|
|
103
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
104
|
+
}
|
|
105
|
+
|
|
106
|
+
public struct ButtonProps {
|
|
107
|
+
public let values: [String: Any]
|
|
108
|
+
public init(_ values: [String: Any]) throws {
|
|
109
|
+
self.values = values
|
|
110
|
+
}
|
|
111
|
+
public var width: Any? { values["width"] }
|
|
112
|
+
public var height: Any? { values["height"] }
|
|
113
|
+
public var min_width: Any? { values["min_width"] }
|
|
114
|
+
public var max_width: Any? { values["max_width"] }
|
|
115
|
+
public var min_height: Any? { values["min_height"] }
|
|
116
|
+
public var max_height: Any? { values["max_height"] }
|
|
117
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
118
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
119
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
120
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
121
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
122
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
123
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
124
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
125
|
+
public var align_items: Any? { values["align_items"] }
|
|
126
|
+
public var align_self: Any? { values["align_self"] }
|
|
127
|
+
public var align_content: Any? { values["align_content"] }
|
|
128
|
+
public var direction: Any? { values["direction"] }
|
|
129
|
+
public var display: Any? { values["display"] }
|
|
130
|
+
public var position: Any? { values["position"] }
|
|
131
|
+
public var top: Any? { values["top"] }
|
|
132
|
+
public var right: Any? { values["right"] }
|
|
133
|
+
public var bottom: Any? { values["bottom"] }
|
|
134
|
+
public var left: Any? { values["left"] }
|
|
135
|
+
public var start: Any? { values["start"] }
|
|
136
|
+
public var end: Any? { values["end"] }
|
|
137
|
+
public var padding: Any? { values["padding"] }
|
|
138
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
139
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
140
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
141
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
142
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
143
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
144
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
145
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
146
|
+
public var margin: Any? { values["margin"] }
|
|
147
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
148
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
149
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
150
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
151
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
152
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
153
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
154
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
155
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
156
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
157
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
158
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
159
|
+
public var overflow: Any? { values["overflow"] }
|
|
160
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
161
|
+
public var color: String? { values["color"] as? String }
|
|
162
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
163
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
164
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
165
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
166
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
167
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
168
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
169
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
170
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
171
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
172
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
173
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
174
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
175
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
176
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
177
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
178
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
179
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
180
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
181
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
182
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
183
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
184
|
+
public var text_align: Any? { values["text_align"] }
|
|
185
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
186
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
187
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
188
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
189
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
190
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
191
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
192
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
193
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
194
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
195
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
196
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
197
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
198
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
199
|
+
public var transform: Any? { values["transform"] }
|
|
200
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
201
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
202
|
+
public var title: String? { values["title"] as? String }
|
|
203
|
+
public var on_press: Any? { values["on_press"] }
|
|
204
|
+
public var disabled: Bool? { values["disabled"] as? Bool }
|
|
205
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
206
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
207
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
208
|
+
public var accessible: Any? { values["accessible"] }
|
|
209
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
210
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
211
|
+
public var test_id: Any? { values["test_id"] }
|
|
212
|
+
public var ref: Any? { values["ref"] }
|
|
213
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
214
|
+
}
|
|
215
|
+
|
|
216
|
+
public struct CheckboxProps {
|
|
217
|
+
public let values: [String: Any]
|
|
218
|
+
public init(_ values: [String: Any]) throws {
|
|
219
|
+
self.values = values
|
|
220
|
+
}
|
|
221
|
+
public var width: Any? { values["width"] }
|
|
222
|
+
public var height: Any? { values["height"] }
|
|
223
|
+
public var min_width: Any? { values["min_width"] }
|
|
224
|
+
public var max_width: Any? { values["max_width"] }
|
|
225
|
+
public var min_height: Any? { values["min_height"] }
|
|
226
|
+
public var max_height: Any? { values["max_height"] }
|
|
227
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
228
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
229
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
230
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
231
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
232
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
233
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
234
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
235
|
+
public var align_items: Any? { values["align_items"] }
|
|
236
|
+
public var align_self: Any? { values["align_self"] }
|
|
237
|
+
public var align_content: Any? { values["align_content"] }
|
|
238
|
+
public var direction: Any? { values["direction"] }
|
|
239
|
+
public var display: Any? { values["display"] }
|
|
240
|
+
public var position: Any? { values["position"] }
|
|
241
|
+
public var top: Any? { values["top"] }
|
|
242
|
+
public var right: Any? { values["right"] }
|
|
243
|
+
public var bottom: Any? { values["bottom"] }
|
|
244
|
+
public var left: Any? { values["left"] }
|
|
245
|
+
public var start: Any? { values["start"] }
|
|
246
|
+
public var end: Any? { values["end"] }
|
|
247
|
+
public var padding: Any? { values["padding"] }
|
|
248
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
249
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
250
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
251
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
252
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
253
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
254
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
255
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
256
|
+
public var margin: Any? { values["margin"] }
|
|
257
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
258
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
259
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
260
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
261
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
262
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
263
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
264
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
265
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
266
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
267
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
268
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
269
|
+
public var overflow: Any? { values["overflow"] }
|
|
270
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
271
|
+
public var color: Any? { values["color"] }
|
|
272
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
273
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
274
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
275
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
276
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
277
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
278
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
279
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
280
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
281
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
282
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
283
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
284
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
285
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
286
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
287
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
288
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
289
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
290
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
291
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
292
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
293
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
294
|
+
public var text_align: Any? { values["text_align"] }
|
|
295
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
296
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
297
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
298
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
299
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
300
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
301
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
302
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
303
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
304
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
305
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
306
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
307
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
308
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
309
|
+
public var transform: Any? { values["transform"] }
|
|
310
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
311
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
312
|
+
public var value: Bool? { values["value"] as? Bool }
|
|
313
|
+
public var on_change: Any? { values["on_change"] }
|
|
314
|
+
public var label: Any? { values["label"] }
|
|
315
|
+
public var disabled: Bool? { values["disabled"] as? Bool }
|
|
316
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
317
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
318
|
+
public var accessible: Any? { values["accessible"] }
|
|
319
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
320
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
321
|
+
public var test_id: Any? { values["test_id"] }
|
|
322
|
+
public var ref: Any? { values["ref"] }
|
|
323
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
public struct ColumnProps {
|
|
327
|
+
public let values: [String: Any]
|
|
328
|
+
public init(_ values: [String: Any]) throws {
|
|
329
|
+
self.values = values
|
|
330
|
+
}
|
|
331
|
+
public var width: Any? { values["width"] }
|
|
332
|
+
public var height: Any? { values["height"] }
|
|
333
|
+
public var min_width: Any? { values["min_width"] }
|
|
334
|
+
public var max_width: Any? { values["max_width"] }
|
|
335
|
+
public var min_height: Any? { values["min_height"] }
|
|
336
|
+
public var max_height: Any? { values["max_height"] }
|
|
337
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
338
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
339
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
340
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
341
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
342
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
343
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
344
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
345
|
+
public var align_items: Any? { values["align_items"] }
|
|
346
|
+
public var align_self: Any? { values["align_self"] }
|
|
347
|
+
public var align_content: Any? { values["align_content"] }
|
|
348
|
+
public var direction: Any? { values["direction"] }
|
|
349
|
+
public var display: Any? { values["display"] }
|
|
350
|
+
public var position: Any? { values["position"] }
|
|
351
|
+
public var top: Any? { values["top"] }
|
|
352
|
+
public var right: Any? { values["right"] }
|
|
353
|
+
public var bottom: Any? { values["bottom"] }
|
|
354
|
+
public var left: Any? { values["left"] }
|
|
355
|
+
public var start: Any? { values["start"] }
|
|
356
|
+
public var end: Any? { values["end"] }
|
|
357
|
+
public var padding: Any? { values["padding"] }
|
|
358
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
359
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
360
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
361
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
362
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
363
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
364
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
365
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
366
|
+
public var margin: Any? { values["margin"] }
|
|
367
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
368
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
369
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
370
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
371
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
372
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
373
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
374
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
375
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
376
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
377
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
378
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
379
|
+
public var overflow: Any? { values["overflow"] }
|
|
380
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
381
|
+
public var color: String? { values["color"] as? String }
|
|
382
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
383
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
384
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
385
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
386
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
387
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
388
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
389
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
390
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
391
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
392
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
393
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
394
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
395
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
396
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
397
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
398
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
399
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
400
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
401
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
402
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
403
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
404
|
+
public var text_align: Any? { values["text_align"] }
|
|
405
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
406
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
407
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
408
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
409
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
410
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
411
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
412
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
413
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
414
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
415
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
416
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
417
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
418
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
419
|
+
public var transform: Any? { values["transform"] }
|
|
420
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
421
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
422
|
+
public var gestures: Any? { values["gestures"] }
|
|
423
|
+
public var hit_slop: Any? { values["hit_slop"] }
|
|
424
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
425
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
426
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
427
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
428
|
+
public var accessible: Any? { values["accessible"] }
|
|
429
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
430
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
431
|
+
public var test_id: Any? { values["test_id"] }
|
|
432
|
+
public var ref: Any? { values["ref"] }
|
|
433
|
+
}
|
|
434
|
+
|
|
435
|
+
public struct DatePickerProps {
|
|
436
|
+
public let values: [String: Any]
|
|
437
|
+
public init(_ values: [String: Any]) throws {
|
|
438
|
+
self.values = values
|
|
439
|
+
}
|
|
440
|
+
public var width: Any? { values["width"] }
|
|
441
|
+
public var height: Any? { values["height"] }
|
|
442
|
+
public var min_width: Any? { values["min_width"] }
|
|
443
|
+
public var max_width: Any? { values["max_width"] }
|
|
444
|
+
public var min_height: Any? { values["min_height"] }
|
|
445
|
+
public var max_height: Any? { values["max_height"] }
|
|
446
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
447
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
448
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
449
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
450
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
451
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
452
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
453
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
454
|
+
public var align_items: Any? { values["align_items"] }
|
|
455
|
+
public var align_self: Any? { values["align_self"] }
|
|
456
|
+
public var align_content: Any? { values["align_content"] }
|
|
457
|
+
public var direction: Any? { values["direction"] }
|
|
458
|
+
public var display: Any? { values["display"] }
|
|
459
|
+
public var position: Any? { values["position"] }
|
|
460
|
+
public var top: Any? { values["top"] }
|
|
461
|
+
public var right: Any? { values["right"] }
|
|
462
|
+
public var bottom: Any? { values["bottom"] }
|
|
463
|
+
public var left: Any? { values["left"] }
|
|
464
|
+
public var start: Any? { values["start"] }
|
|
465
|
+
public var end: Any? { values["end"] }
|
|
466
|
+
public var padding: Any? { values["padding"] }
|
|
467
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
468
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
469
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
470
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
471
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
472
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
473
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
474
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
475
|
+
public var margin: Any? { values["margin"] }
|
|
476
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
477
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
478
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
479
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
480
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
481
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
482
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
483
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
484
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
485
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
486
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
487
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
488
|
+
public var overflow: Any? { values["overflow"] }
|
|
489
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
490
|
+
public var color: String? { values["color"] as? String }
|
|
491
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
492
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
493
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
494
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
495
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
496
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
497
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
498
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
499
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
500
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
501
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
502
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
503
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
504
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
505
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
506
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
507
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
508
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
509
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
510
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
511
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
512
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
513
|
+
public var text_align: Any? { values["text_align"] }
|
|
514
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
515
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
516
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
517
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
518
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
519
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
520
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
521
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
522
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
523
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
524
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
525
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
526
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
527
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
528
|
+
public var transform: Any? { values["transform"] }
|
|
529
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
530
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
531
|
+
public var value: Any? { values["value"] }
|
|
532
|
+
public var mode: Any? { values["mode"] }
|
|
533
|
+
public var on_change: Any? { values["on_change"] }
|
|
534
|
+
public var minimum: Any? { values["minimum"] }
|
|
535
|
+
public var maximum: Any? { values["maximum"] }
|
|
536
|
+
public var disabled: Bool? { values["disabled"] as? Bool }
|
|
537
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
538
|
+
public var accessible: Any? { values["accessible"] }
|
|
539
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
540
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
541
|
+
public var test_id: Any? { values["test_id"] }
|
|
542
|
+
public var ref: Any? { values["ref"] }
|
|
543
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
544
|
+
}
|
|
545
|
+
|
|
546
|
+
public struct ErrorBoundaryProps {
|
|
547
|
+
public let values: [String: Any]
|
|
548
|
+
public init(_ values: [String: Any]) throws {
|
|
549
|
+
self.values = values
|
|
550
|
+
}
|
|
551
|
+
public var width: Any? { values["width"] }
|
|
552
|
+
public var height: Any? { values["height"] }
|
|
553
|
+
public var min_width: Any? { values["min_width"] }
|
|
554
|
+
public var max_width: Any? { values["max_width"] }
|
|
555
|
+
public var min_height: Any? { values["min_height"] }
|
|
556
|
+
public var max_height: Any? { values["max_height"] }
|
|
557
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
558
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
559
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
560
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
561
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
562
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
563
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
564
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
565
|
+
public var align_items: Any? { values["align_items"] }
|
|
566
|
+
public var align_self: Any? { values["align_self"] }
|
|
567
|
+
public var align_content: Any? { values["align_content"] }
|
|
568
|
+
public var direction: Any? { values["direction"] }
|
|
569
|
+
public var display: Any? { values["display"] }
|
|
570
|
+
public var position: Any? { values["position"] }
|
|
571
|
+
public var top: Any? { values["top"] }
|
|
572
|
+
public var right: Any? { values["right"] }
|
|
573
|
+
public var bottom: Any? { values["bottom"] }
|
|
574
|
+
public var left: Any? { values["left"] }
|
|
575
|
+
public var start: Any? { values["start"] }
|
|
576
|
+
public var end: Any? { values["end"] }
|
|
577
|
+
public var padding: Any? { values["padding"] }
|
|
578
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
579
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
580
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
581
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
582
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
583
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
584
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
585
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
586
|
+
public var margin: Any? { values["margin"] }
|
|
587
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
588
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
589
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
590
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
591
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
592
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
593
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
594
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
595
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
596
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
597
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
598
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
599
|
+
public var overflow: Any? { values["overflow"] }
|
|
600
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
601
|
+
public var color: String? { values["color"] as? String }
|
|
602
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
603
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
604
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
605
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
606
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
607
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
608
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
609
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
610
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
611
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
612
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
613
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
614
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
615
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
616
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
617
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
618
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
619
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
620
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
621
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
622
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
623
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
624
|
+
public var text_align: Any? { values["text_align"] }
|
|
625
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
626
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
627
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
628
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
629
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
630
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
631
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
632
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
633
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
634
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
635
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
636
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
637
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
638
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
639
|
+
public var transform: Any? { values["transform"] }
|
|
640
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
641
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
642
|
+
public var fallback: Any? { values["fallback"] }
|
|
643
|
+
public var on_error: Any? { values["on_error"] }
|
|
644
|
+
public var ref: Any? { values["ref"] }
|
|
645
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
public struct FlatListProps {
|
|
649
|
+
public let values: [String: Any]
|
|
650
|
+
public init(_ values: [String: Any]) throws {
|
|
651
|
+
self.values = values
|
|
652
|
+
}
|
|
653
|
+
public var width: Any? { values["width"] }
|
|
654
|
+
public var height: Any? { values["height"] }
|
|
655
|
+
public var min_width: Any? { values["min_width"] }
|
|
656
|
+
public var max_width: Any? { values["max_width"] }
|
|
657
|
+
public var min_height: Any? { values["min_height"] }
|
|
658
|
+
public var max_height: Any? { values["max_height"] }
|
|
659
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
660
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
661
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
662
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
663
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
664
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
665
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
666
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
667
|
+
public var align_items: Any? { values["align_items"] }
|
|
668
|
+
public var align_self: Any? { values["align_self"] }
|
|
669
|
+
public var align_content: Any? { values["align_content"] }
|
|
670
|
+
public var direction: Any? { values["direction"] }
|
|
671
|
+
public var display: Any? { values["display"] }
|
|
672
|
+
public var position: Any? { values["position"] }
|
|
673
|
+
public var top: Any? { values["top"] }
|
|
674
|
+
public var right: Any? { values["right"] }
|
|
675
|
+
public var bottom: Any? { values["bottom"] }
|
|
676
|
+
public var left: Any? { values["left"] }
|
|
677
|
+
public var start: Any? { values["start"] }
|
|
678
|
+
public var end: Any? { values["end"] }
|
|
679
|
+
public var padding: Any? { values["padding"] }
|
|
680
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
681
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
682
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
683
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
684
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
685
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
686
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
687
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
688
|
+
public var margin: Any? { values["margin"] }
|
|
689
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
690
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
691
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
692
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
693
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
694
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
695
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
696
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
697
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
698
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
699
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
700
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
701
|
+
public var overflow: Any? { values["overflow"] }
|
|
702
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
703
|
+
public var color: String? { values["color"] as? String }
|
|
704
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
705
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
706
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
707
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
708
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
709
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
710
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
711
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
712
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
713
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
714
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
715
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
716
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
717
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
718
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
719
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
720
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
721
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
722
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
723
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
724
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
725
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
726
|
+
public var text_align: Any? { values["text_align"] }
|
|
727
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
728
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
729
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
730
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
731
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
732
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
733
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
734
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
735
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
736
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
737
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
738
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
739
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
740
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
741
|
+
public var transform: Any? { values["transform"] }
|
|
742
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
743
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
744
|
+
public var data: Any? { values["data"] }
|
|
745
|
+
public var render_item: Any? { values["render_item"] }
|
|
746
|
+
public var key_extractor: Any? { values["key_extractor"] }
|
|
747
|
+
public var item_height: Any? { values["item_height"] }
|
|
748
|
+
public var get_item_height: Any? { values["get_item_height"] }
|
|
749
|
+
public var estimated_item_height: Any? { values["estimated_item_height"] }
|
|
750
|
+
public var separator_height: Double? { values["separator_height"] as? Double }
|
|
751
|
+
public var refresh_control: Any? { values["refresh_control"] }
|
|
752
|
+
public var horizontal: Bool? { values["horizontal"] as? Bool }
|
|
753
|
+
public var num_columns: Int? { values["num_columns"] as? Int }
|
|
754
|
+
public var list_header: Any? { values["list_header"] }
|
|
755
|
+
public var list_footer: Any? { values["list_footer"] }
|
|
756
|
+
public var list_empty: Any? { values["list_empty"] }
|
|
757
|
+
public var on_end_reached: Any? { values["on_end_reached"] }
|
|
758
|
+
public var on_end_reached_threshold: Double? { values["on_end_reached_threshold"] as? Double }
|
|
759
|
+
public var on_viewable_items_changed: Any? { values["on_viewable_items_changed"] }
|
|
760
|
+
public var on_scroll: Any? { values["on_scroll"] }
|
|
761
|
+
public var shows_scroll_indicator: Bool? { values["shows_scroll_indicator"] as? Bool }
|
|
762
|
+
public var content_container_style: Any? { values["content_container_style"] }
|
|
763
|
+
public var ref: Any? { values["ref"] }
|
|
764
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
public struct FragmentProps {
|
|
768
|
+
public let values: [String: Any]
|
|
769
|
+
public init(_ values: [String: Any]) throws {
|
|
770
|
+
self.values = values
|
|
771
|
+
}
|
|
772
|
+
public var width: Any? { values["width"] }
|
|
773
|
+
public var height: Any? { values["height"] }
|
|
774
|
+
public var min_width: Any? { values["min_width"] }
|
|
775
|
+
public var max_width: Any? { values["max_width"] }
|
|
776
|
+
public var min_height: Any? { values["min_height"] }
|
|
777
|
+
public var max_height: Any? { values["max_height"] }
|
|
778
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
779
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
780
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
781
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
782
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
783
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
784
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
785
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
786
|
+
public var align_items: Any? { values["align_items"] }
|
|
787
|
+
public var align_self: Any? { values["align_self"] }
|
|
788
|
+
public var align_content: Any? { values["align_content"] }
|
|
789
|
+
public var direction: Any? { values["direction"] }
|
|
790
|
+
public var display: Any? { values["display"] }
|
|
791
|
+
public var position: Any? { values["position"] }
|
|
792
|
+
public var top: Any? { values["top"] }
|
|
793
|
+
public var right: Any? { values["right"] }
|
|
794
|
+
public var bottom: Any? { values["bottom"] }
|
|
795
|
+
public var left: Any? { values["left"] }
|
|
796
|
+
public var start: Any? { values["start"] }
|
|
797
|
+
public var end: Any? { values["end"] }
|
|
798
|
+
public var padding: Any? { values["padding"] }
|
|
799
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
800
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
801
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
802
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
803
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
804
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
805
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
806
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
807
|
+
public var margin: Any? { values["margin"] }
|
|
808
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
809
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
810
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
811
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
812
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
813
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
814
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
815
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
816
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
817
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
818
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
819
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
820
|
+
public var overflow: Any? { values["overflow"] }
|
|
821
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
822
|
+
public var color: String? { values["color"] as? String }
|
|
823
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
824
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
825
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
826
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
827
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
828
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
829
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
830
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
831
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
832
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
833
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
834
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
835
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
836
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
837
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
838
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
839
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
840
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
841
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
842
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
843
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
844
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
845
|
+
public var text_align: Any? { values["text_align"] }
|
|
846
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
847
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
848
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
849
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
850
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
851
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
852
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
853
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
854
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
855
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
856
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
857
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
858
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
859
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
860
|
+
public var transform: Any? { values["transform"] }
|
|
861
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
862
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
863
|
+
public var ref: Any? { values["ref"] }
|
|
864
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
865
|
+
}
|
|
866
|
+
|
|
867
|
+
public struct ImageProps {
|
|
868
|
+
public let values: [String: Any]
|
|
869
|
+
public init(_ values: [String: Any]) throws {
|
|
870
|
+
self.values = values
|
|
871
|
+
}
|
|
872
|
+
public var width: Any? { values["width"] }
|
|
873
|
+
public var height: Any? { values["height"] }
|
|
874
|
+
public var min_width: Any? { values["min_width"] }
|
|
875
|
+
public var max_width: Any? { values["max_width"] }
|
|
876
|
+
public var min_height: Any? { values["min_height"] }
|
|
877
|
+
public var max_height: Any? { values["max_height"] }
|
|
878
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
879
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
880
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
881
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
882
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
883
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
884
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
885
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
886
|
+
public var align_items: Any? { values["align_items"] }
|
|
887
|
+
public var align_self: Any? { values["align_self"] }
|
|
888
|
+
public var align_content: Any? { values["align_content"] }
|
|
889
|
+
public var direction: Any? { values["direction"] }
|
|
890
|
+
public var display: Any? { values["display"] }
|
|
891
|
+
public var position: Any? { values["position"] }
|
|
892
|
+
public var top: Any? { values["top"] }
|
|
893
|
+
public var right: Any? { values["right"] }
|
|
894
|
+
public var bottom: Any? { values["bottom"] }
|
|
895
|
+
public var left: Any? { values["left"] }
|
|
896
|
+
public var start: Any? { values["start"] }
|
|
897
|
+
public var end: Any? { values["end"] }
|
|
898
|
+
public var padding: Any? { values["padding"] }
|
|
899
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
900
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
901
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
902
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
903
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
904
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
905
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
906
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
907
|
+
public var margin: Any? { values["margin"] }
|
|
908
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
909
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
910
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
911
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
912
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
913
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
914
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
915
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
916
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
917
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
918
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
919
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
920
|
+
public var overflow: Any? { values["overflow"] }
|
|
921
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
922
|
+
public var color: String? { values["color"] as? String }
|
|
923
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
924
|
+
public var placeholder_color: Any? { values["placeholder_color"] }
|
|
925
|
+
public var tint_color: Any? { values["tint_color"] }
|
|
926
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
927
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
928
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
929
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
930
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
931
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
932
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
933
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
934
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
935
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
936
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
937
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
938
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
939
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
940
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
941
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
942
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
943
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
944
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
945
|
+
public var text_align: Any? { values["text_align"] }
|
|
946
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
947
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
948
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
949
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
950
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
951
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
952
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
953
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
954
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
955
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
956
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
957
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
958
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
959
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
960
|
+
public var transform: Any? { values["transform"] }
|
|
961
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
962
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
963
|
+
public var source: String? { values["source"] as? String }
|
|
964
|
+
public var scale_type: Any? { values["scale_type"] }
|
|
965
|
+
public var on_load: Any? { values["on_load"] }
|
|
966
|
+
public var on_error: Any? { values["on_error"] }
|
|
967
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
968
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
969
|
+
public var accessible: Any? { values["accessible"] }
|
|
970
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
971
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
972
|
+
public var test_id: Any? { values["test_id"] }
|
|
973
|
+
public var ref: Any? { values["ref"] }
|
|
974
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
public struct ImageBackgroundProps {
|
|
978
|
+
public let values: [String: Any]
|
|
979
|
+
public init(_ values: [String: Any]) throws {
|
|
980
|
+
self.values = values
|
|
981
|
+
}
|
|
982
|
+
public var width: Any? { values["width"] }
|
|
983
|
+
public var height: Any? { values["height"] }
|
|
984
|
+
public var min_width: Any? { values["min_width"] }
|
|
985
|
+
public var max_width: Any? { values["max_width"] }
|
|
986
|
+
public var min_height: Any? { values["min_height"] }
|
|
987
|
+
public var max_height: Any? { values["max_height"] }
|
|
988
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
989
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
990
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
991
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
992
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
993
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
994
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
995
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
996
|
+
public var align_items: Any? { values["align_items"] }
|
|
997
|
+
public var align_self: Any? { values["align_self"] }
|
|
998
|
+
public var align_content: Any? { values["align_content"] }
|
|
999
|
+
public var direction: Any? { values["direction"] }
|
|
1000
|
+
public var display: Any? { values["display"] }
|
|
1001
|
+
public var position: Any? { values["position"] }
|
|
1002
|
+
public var top: Any? { values["top"] }
|
|
1003
|
+
public var right: Any? { values["right"] }
|
|
1004
|
+
public var bottom: Any? { values["bottom"] }
|
|
1005
|
+
public var left: Any? { values["left"] }
|
|
1006
|
+
public var start: Any? { values["start"] }
|
|
1007
|
+
public var end: Any? { values["end"] }
|
|
1008
|
+
public var padding: Any? { values["padding"] }
|
|
1009
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1010
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1011
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1012
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1013
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1014
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1015
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1016
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1017
|
+
public var margin: Any? { values["margin"] }
|
|
1018
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1019
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1020
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1021
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1022
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1023
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1024
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1025
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1026
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1027
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1028
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1029
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1030
|
+
public var overflow: Any? { values["overflow"] }
|
|
1031
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1032
|
+
public var color: String? { values["color"] as? String }
|
|
1033
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1034
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1035
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1036
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1037
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1038
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1039
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1040
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1041
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1042
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1043
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1044
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1045
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1046
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1047
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1048
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1049
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1050
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1051
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1052
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1053
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1054
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1055
|
+
public var text_align: Any? { values["text_align"] }
|
|
1056
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1057
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1058
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1059
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1060
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1061
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1062
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1063
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1064
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1065
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1066
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1067
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1068
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1069
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1070
|
+
public var transform: Any? { values["transform"] }
|
|
1071
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1072
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1073
|
+
public var source: String? { values["source"] as? String }
|
|
1074
|
+
public var scale_type: Any? { values["scale_type"] }
|
|
1075
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
1076
|
+
public var accessible: Any? { values["accessible"] }
|
|
1077
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
1078
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
1079
|
+
public var test_id: Any? { values["test_id"] }
|
|
1080
|
+
public var ref: Any? { values["ref"] }
|
|
1081
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
public struct KeyboardAvoidingViewProps {
|
|
1085
|
+
public let values: [String: Any]
|
|
1086
|
+
public init(_ values: [String: Any]) throws {
|
|
1087
|
+
self.values = values
|
|
1088
|
+
}
|
|
1089
|
+
public var width: Any? { values["width"] }
|
|
1090
|
+
public var height: Any? { values["height"] }
|
|
1091
|
+
public var min_width: Any? { values["min_width"] }
|
|
1092
|
+
public var max_width: Any? { values["max_width"] }
|
|
1093
|
+
public var min_height: Any? { values["min_height"] }
|
|
1094
|
+
public var max_height: Any? { values["max_height"] }
|
|
1095
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1096
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1097
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1098
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1099
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1100
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1101
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1102
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1103
|
+
public var align_items: Any? { values["align_items"] }
|
|
1104
|
+
public var align_self: Any? { values["align_self"] }
|
|
1105
|
+
public var align_content: Any? { values["align_content"] }
|
|
1106
|
+
public var direction: Any? { values["direction"] }
|
|
1107
|
+
public var display: Any? { values["display"] }
|
|
1108
|
+
public var position: Any? { values["position"] }
|
|
1109
|
+
public var top: Any? { values["top"] }
|
|
1110
|
+
public var right: Any? { values["right"] }
|
|
1111
|
+
public var bottom: Any? { values["bottom"] }
|
|
1112
|
+
public var left: Any? { values["left"] }
|
|
1113
|
+
public var start: Any? { values["start"] }
|
|
1114
|
+
public var end: Any? { values["end"] }
|
|
1115
|
+
public var padding: Any? { values["padding"] }
|
|
1116
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1117
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1118
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1119
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1120
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1121
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1122
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1123
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1124
|
+
public var margin: Any? { values["margin"] }
|
|
1125
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1126
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1127
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1128
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1129
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1130
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1131
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1132
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1133
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1134
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1135
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1136
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1137
|
+
public var overflow: Any? { values["overflow"] }
|
|
1138
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1139
|
+
public var color: String? { values["color"] as? String }
|
|
1140
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1141
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1142
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1143
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1144
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1145
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1146
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1147
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1148
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1149
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1150
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1151
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1152
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1153
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1154
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1155
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1156
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1157
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1158
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1159
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1160
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1161
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1162
|
+
public var text_align: Any? { values["text_align"] }
|
|
1163
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1164
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1165
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1166
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1167
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1168
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1169
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1170
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1171
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1172
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1173
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1174
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1175
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1176
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1177
|
+
public var transform: Any? { values["transform"] }
|
|
1178
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1179
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1180
|
+
public var behavior: Any? { values["behavior"] }
|
|
1181
|
+
public var keyboard_vertical_offset: Double? { values["keyboard_vertical_offset"] as? Double }
|
|
1182
|
+
public var ref: Any? { values["ref"] }
|
|
1183
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1184
|
+
}
|
|
1185
|
+
|
|
1186
|
+
public struct ModalProps {
|
|
1187
|
+
public let values: [String: Any]
|
|
1188
|
+
public init(_ values: [String: Any]) throws {
|
|
1189
|
+
self.values = values
|
|
1190
|
+
}
|
|
1191
|
+
public var width: Any? { values["width"] }
|
|
1192
|
+
public var height: Any? { values["height"] }
|
|
1193
|
+
public var min_width: Any? { values["min_width"] }
|
|
1194
|
+
public var max_width: Any? { values["max_width"] }
|
|
1195
|
+
public var min_height: Any? { values["min_height"] }
|
|
1196
|
+
public var max_height: Any? { values["max_height"] }
|
|
1197
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1198
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1199
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1200
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1201
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1202
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1203
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1204
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1205
|
+
public var align_items: Any? { values["align_items"] }
|
|
1206
|
+
public var align_self: Any? { values["align_self"] }
|
|
1207
|
+
public var align_content: Any? { values["align_content"] }
|
|
1208
|
+
public var direction: Any? { values["direction"] }
|
|
1209
|
+
public var display: Any? { values["display"] }
|
|
1210
|
+
public var position: Any? { values["position"] }
|
|
1211
|
+
public var top: Any? { values["top"] }
|
|
1212
|
+
public var right: Any? { values["right"] }
|
|
1213
|
+
public var bottom: Any? { values["bottom"] }
|
|
1214
|
+
public var left: Any? { values["left"] }
|
|
1215
|
+
public var start: Any? { values["start"] }
|
|
1216
|
+
public var end: Any? { values["end"] }
|
|
1217
|
+
public var padding: Any? { values["padding"] }
|
|
1218
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1219
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1220
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1221
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1222
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1223
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1224
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1225
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1226
|
+
public var margin: Any? { values["margin"] }
|
|
1227
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1228
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1229
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1230
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1231
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1232
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1233
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1234
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1235
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1236
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1237
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1238
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1239
|
+
public var overflow: Any? { values["overflow"] }
|
|
1240
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1241
|
+
public var color: String? { values["color"] as? String }
|
|
1242
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1243
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1244
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1245
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1246
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1247
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1248
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1249
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1250
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1251
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1252
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1253
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1254
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1255
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1256
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1257
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1258
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1259
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1260
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1261
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1262
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1263
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1264
|
+
public var text_align: Any? { values["text_align"] }
|
|
1265
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1266
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1267
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1268
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1269
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1270
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1271
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1272
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1273
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1274
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1275
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1276
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1277
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1278
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1279
|
+
public var transform: Any? { values["transform"] }
|
|
1280
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1281
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1282
|
+
public var visible: Bool? { values["visible"] as? Bool }
|
|
1283
|
+
public var on_dismiss: Any? { values["on_dismiss"] }
|
|
1284
|
+
public var on_show: Any? { values["on_show"] }
|
|
1285
|
+
public var title: Any? { values["title"] }
|
|
1286
|
+
public var animation_type: Any? { values["animation_type"] }
|
|
1287
|
+
public var transparent: Bool? { values["transparent"] as? Bool }
|
|
1288
|
+
public var presentation_style: Any? { values["presentation_style"] }
|
|
1289
|
+
public var dismiss_on_backdrop: Bool? { values["dismiss_on_backdrop"] as? Bool }
|
|
1290
|
+
public var ref: Any? { values["ref"] }
|
|
1291
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1292
|
+
}
|
|
1293
|
+
|
|
1294
|
+
public struct PickerProps {
|
|
1295
|
+
public let values: [String: Any]
|
|
1296
|
+
public init(_ values: [String: Any]) throws {
|
|
1297
|
+
self.values = values
|
|
1298
|
+
}
|
|
1299
|
+
public var width: Any? { values["width"] }
|
|
1300
|
+
public var height: Any? { values["height"] }
|
|
1301
|
+
public var min_width: Any? { values["min_width"] }
|
|
1302
|
+
public var max_width: Any? { values["max_width"] }
|
|
1303
|
+
public var min_height: Any? { values["min_height"] }
|
|
1304
|
+
public var max_height: Any? { values["max_height"] }
|
|
1305
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1306
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1307
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1308
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1309
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1310
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1311
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1312
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1313
|
+
public var align_items: Any? { values["align_items"] }
|
|
1314
|
+
public var align_self: Any? { values["align_self"] }
|
|
1315
|
+
public var align_content: Any? { values["align_content"] }
|
|
1316
|
+
public var direction: Any? { values["direction"] }
|
|
1317
|
+
public var display: Any? { values["display"] }
|
|
1318
|
+
public var position: Any? { values["position"] }
|
|
1319
|
+
public var top: Any? { values["top"] }
|
|
1320
|
+
public var right: Any? { values["right"] }
|
|
1321
|
+
public var bottom: Any? { values["bottom"] }
|
|
1322
|
+
public var left: Any? { values["left"] }
|
|
1323
|
+
public var start: Any? { values["start"] }
|
|
1324
|
+
public var end: Any? { values["end"] }
|
|
1325
|
+
public var padding: Any? { values["padding"] }
|
|
1326
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1327
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1328
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1329
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1330
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1331
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1332
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1333
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1334
|
+
public var margin: Any? { values["margin"] }
|
|
1335
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1336
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1337
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1338
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1339
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1340
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1341
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1342
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1343
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1344
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1345
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1346
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1347
|
+
public var overflow: Any? { values["overflow"] }
|
|
1348
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1349
|
+
public var color: String? { values["color"] as? String }
|
|
1350
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1351
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1352
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1353
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1354
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1355
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1356
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1357
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1358
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1359
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1360
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1361
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1362
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1363
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1364
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1365
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1366
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1367
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1368
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1369
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1370
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1371
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1372
|
+
public var text_align: Any? { values["text_align"] }
|
|
1373
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1374
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1375
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1376
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1377
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1378
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1379
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1380
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1381
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1382
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1383
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1384
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1385
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1386
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1387
|
+
public var transform: Any? { values["transform"] }
|
|
1388
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1389
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1390
|
+
public var value: Any? { values["value"] }
|
|
1391
|
+
public var disabled: Bool? { values["disabled"] as? Bool }
|
|
1392
|
+
public var items: Any? { values["items"] }
|
|
1393
|
+
public var on_change: Any? { values["on_change"] }
|
|
1394
|
+
public var placeholder: String? { values["placeholder"] as? String }
|
|
1395
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
1396
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
1397
|
+
public var accessible: Any? { values["accessible"] }
|
|
1398
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
1399
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
1400
|
+
public var test_id: Any? { values["test_id"] }
|
|
1401
|
+
public var ref: Any? { values["ref"] }
|
|
1402
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1403
|
+
}
|
|
1404
|
+
|
|
1405
|
+
public struct PortalProps {
|
|
1406
|
+
public let values: [String: Any]
|
|
1407
|
+
public init(_ values: [String: Any]) throws {
|
|
1408
|
+
self.values = values
|
|
1409
|
+
}
|
|
1410
|
+
public var width: Any? { values["width"] }
|
|
1411
|
+
public var height: Any? { values["height"] }
|
|
1412
|
+
public var min_width: Any? { values["min_width"] }
|
|
1413
|
+
public var max_width: Any? { values["max_width"] }
|
|
1414
|
+
public var min_height: Any? { values["min_height"] }
|
|
1415
|
+
public var max_height: Any? { values["max_height"] }
|
|
1416
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1417
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1418
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1419
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1420
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1421
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1422
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1423
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1424
|
+
public var align_items: Any? { values["align_items"] }
|
|
1425
|
+
public var align_self: Any? { values["align_self"] }
|
|
1426
|
+
public var align_content: Any? { values["align_content"] }
|
|
1427
|
+
public var direction: Any? { values["direction"] }
|
|
1428
|
+
public var display: Any? { values["display"] }
|
|
1429
|
+
public var position: Any? { values["position"] }
|
|
1430
|
+
public var top: Any? { values["top"] }
|
|
1431
|
+
public var right: Any? { values["right"] }
|
|
1432
|
+
public var bottom: Any? { values["bottom"] }
|
|
1433
|
+
public var left: Any? { values["left"] }
|
|
1434
|
+
public var start: Any? { values["start"] }
|
|
1435
|
+
public var end: Any? { values["end"] }
|
|
1436
|
+
public var padding: Any? { values["padding"] }
|
|
1437
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1438
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1439
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1440
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1441
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1442
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1443
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1444
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1445
|
+
public var margin: Any? { values["margin"] }
|
|
1446
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1447
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1448
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1449
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1450
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1451
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1452
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1453
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1454
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1455
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1456
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1457
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1458
|
+
public var overflow: Any? { values["overflow"] }
|
|
1459
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1460
|
+
public var color: String? { values["color"] as? String }
|
|
1461
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1462
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1463
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1464
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1465
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1466
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1467
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1468
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1469
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1470
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1471
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1472
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1473
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1474
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1475
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1476
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1477
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1478
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1479
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1480
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1481
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1482
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1483
|
+
public var text_align: Any? { values["text_align"] }
|
|
1484
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1485
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1486
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1487
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1488
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1489
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1490
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1491
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1492
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1493
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1494
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1495
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1496
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1497
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1498
|
+
public var transform: Any? { values["transform"] }
|
|
1499
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1500
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1501
|
+
public var ref: Any? { values["ref"] }
|
|
1502
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1503
|
+
}
|
|
1504
|
+
|
|
1505
|
+
public struct PressableProps {
|
|
1506
|
+
public let values: [String: Any]
|
|
1507
|
+
public init(_ values: [String: Any]) throws {
|
|
1508
|
+
self.values = values
|
|
1509
|
+
}
|
|
1510
|
+
public var width: Any? { values["width"] }
|
|
1511
|
+
public var height: Any? { values["height"] }
|
|
1512
|
+
public var min_width: Any? { values["min_width"] }
|
|
1513
|
+
public var max_width: Any? { values["max_width"] }
|
|
1514
|
+
public var min_height: Any? { values["min_height"] }
|
|
1515
|
+
public var max_height: Any? { values["max_height"] }
|
|
1516
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1517
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1518
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1519
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1520
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1521
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1522
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1523
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1524
|
+
public var align_items: Any? { values["align_items"] }
|
|
1525
|
+
public var align_self: Any? { values["align_self"] }
|
|
1526
|
+
public var align_content: Any? { values["align_content"] }
|
|
1527
|
+
public var direction: Any? { values["direction"] }
|
|
1528
|
+
public var display: Any? { values["display"] }
|
|
1529
|
+
public var position: Any? { values["position"] }
|
|
1530
|
+
public var top: Any? { values["top"] }
|
|
1531
|
+
public var right: Any? { values["right"] }
|
|
1532
|
+
public var bottom: Any? { values["bottom"] }
|
|
1533
|
+
public var left: Any? { values["left"] }
|
|
1534
|
+
public var start: Any? { values["start"] }
|
|
1535
|
+
public var end: Any? { values["end"] }
|
|
1536
|
+
public var padding: Any? { values["padding"] }
|
|
1537
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1538
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1539
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1540
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1541
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1542
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1543
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1544
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1545
|
+
public var margin: Any? { values["margin"] }
|
|
1546
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1547
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1548
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1549
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1550
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1551
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1552
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1553
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1554
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1555
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1556
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1557
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1558
|
+
public var overflow: Any? { values["overflow"] }
|
|
1559
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1560
|
+
public var color: String? { values["color"] as? String }
|
|
1561
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1562
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1563
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1564
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1565
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1566
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1567
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1568
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1569
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1570
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1571
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1572
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1573
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1574
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1575
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1576
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1577
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1578
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1579
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1580
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1581
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1582
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1583
|
+
public var text_align: Any? { values["text_align"] }
|
|
1584
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1585
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1586
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1587
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1588
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1589
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1590
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1591
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1592
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1593
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1594
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1595
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1596
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1597
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1598
|
+
public var transform: Any? { values["transform"] }
|
|
1599
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1600
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1601
|
+
public var on_press: Any? { values["on_press"] }
|
|
1602
|
+
public var on_long_press: Any? { values["on_long_press"] }
|
|
1603
|
+
public var on_press_in: Any? { values["on_press_in"] }
|
|
1604
|
+
public var on_press_out: Any? { values["on_press_out"] }
|
|
1605
|
+
public var pressed_opacity: Double? { values["pressed_opacity"] as? Double }
|
|
1606
|
+
public var gestures: Any? { values["gestures"] }
|
|
1607
|
+
public var hit_slop: Any? { values["hit_slop"] }
|
|
1608
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1609
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
1610
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
1611
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
1612
|
+
public var accessible: Any? { values["accessible"] }
|
|
1613
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
1614
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
1615
|
+
public var test_id: Any? { values["test_id"] }
|
|
1616
|
+
public var ref: Any? { values["ref"] }
|
|
1617
|
+
}
|
|
1618
|
+
|
|
1619
|
+
public struct ProgressBarProps {
|
|
1620
|
+
public let values: [String: Any]
|
|
1621
|
+
public init(_ values: [String: Any]) throws {
|
|
1622
|
+
self.values = values
|
|
1623
|
+
}
|
|
1624
|
+
public var width: Any? { values["width"] }
|
|
1625
|
+
public var height: Any? { values["height"] }
|
|
1626
|
+
public var min_width: Any? { values["min_width"] }
|
|
1627
|
+
public var max_width: Any? { values["max_width"] }
|
|
1628
|
+
public var min_height: Any? { values["min_height"] }
|
|
1629
|
+
public var max_height: Any? { values["max_height"] }
|
|
1630
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1631
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1632
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1633
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1634
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1635
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1636
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1637
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1638
|
+
public var align_items: Any? { values["align_items"] }
|
|
1639
|
+
public var align_self: Any? { values["align_self"] }
|
|
1640
|
+
public var align_content: Any? { values["align_content"] }
|
|
1641
|
+
public var direction: Any? { values["direction"] }
|
|
1642
|
+
public var display: Any? { values["display"] }
|
|
1643
|
+
public var position: Any? { values["position"] }
|
|
1644
|
+
public var top: Any? { values["top"] }
|
|
1645
|
+
public var right: Any? { values["right"] }
|
|
1646
|
+
public var bottom: Any? { values["bottom"] }
|
|
1647
|
+
public var left: Any? { values["left"] }
|
|
1648
|
+
public var start: Any? { values["start"] }
|
|
1649
|
+
public var end: Any? { values["end"] }
|
|
1650
|
+
public var padding: Any? { values["padding"] }
|
|
1651
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1652
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1653
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1654
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1655
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1656
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1657
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1658
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1659
|
+
public var margin: Any? { values["margin"] }
|
|
1660
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1661
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1662
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1663
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1664
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1665
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1666
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1667
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1668
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1669
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1670
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1671
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1672
|
+
public var overflow: Any? { values["overflow"] }
|
|
1673
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1674
|
+
public var color: Any? { values["color"] }
|
|
1675
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1676
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1677
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1678
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1679
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1680
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1681
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1682
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1683
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1684
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1685
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1686
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1687
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1688
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1689
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1690
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1691
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1692
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1693
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1694
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1695
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1696
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1697
|
+
public var text_align: Any? { values["text_align"] }
|
|
1698
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1699
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1700
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1701
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1702
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1703
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1704
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1705
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1706
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1707
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1708
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1709
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1710
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1711
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1712
|
+
public var transform: Any? { values["transform"] }
|
|
1713
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1714
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1715
|
+
public var value: Double? { values["value"] as? Double }
|
|
1716
|
+
public var track_color: Any? { values["track_color"] }
|
|
1717
|
+
public var indeterminate: Bool? { values["indeterminate"] as? Bool }
|
|
1718
|
+
public var ref: Any? { values["ref"] }
|
|
1719
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1720
|
+
}
|
|
1721
|
+
|
|
1722
|
+
public struct RefreshControlProps {
|
|
1723
|
+
public let values: [String: Any]
|
|
1724
|
+
public init(_ values: [String: Any]) throws {
|
|
1725
|
+
self.values = values
|
|
1726
|
+
}
|
|
1727
|
+
public var width: Any? { values["width"] }
|
|
1728
|
+
public var height: Any? { values["height"] }
|
|
1729
|
+
public var min_width: Any? { values["min_width"] }
|
|
1730
|
+
public var max_width: Any? { values["max_width"] }
|
|
1731
|
+
public var min_height: Any? { values["min_height"] }
|
|
1732
|
+
public var max_height: Any? { values["max_height"] }
|
|
1733
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1734
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1735
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1736
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1737
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1738
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1739
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1740
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1741
|
+
public var align_items: Any? { values["align_items"] }
|
|
1742
|
+
public var align_self: Any? { values["align_self"] }
|
|
1743
|
+
public var align_content: Any? { values["align_content"] }
|
|
1744
|
+
public var direction: Any? { values["direction"] }
|
|
1745
|
+
public var display: Any? { values["display"] }
|
|
1746
|
+
public var position: Any? { values["position"] }
|
|
1747
|
+
public var top: Any? { values["top"] }
|
|
1748
|
+
public var right: Any? { values["right"] }
|
|
1749
|
+
public var bottom: Any? { values["bottom"] }
|
|
1750
|
+
public var left: Any? { values["left"] }
|
|
1751
|
+
public var start: Any? { values["start"] }
|
|
1752
|
+
public var end: Any? { values["end"] }
|
|
1753
|
+
public var padding: Any? { values["padding"] }
|
|
1754
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1755
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1756
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1757
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1758
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1759
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1760
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1761
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1762
|
+
public var margin: Any? { values["margin"] }
|
|
1763
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1764
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1765
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1766
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1767
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1768
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1769
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1770
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1771
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1772
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1773
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1774
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1775
|
+
public var overflow: Any? { values["overflow"] }
|
|
1776
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1777
|
+
public var color: String? { values["color"] as? String }
|
|
1778
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1779
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1780
|
+
public var tint_color: Any? { values["tint_color"] }
|
|
1781
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1782
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1783
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1784
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1785
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1786
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1787
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1788
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1789
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1790
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1791
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1792
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1793
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1794
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1795
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1796
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1797
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1798
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1799
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1800
|
+
public var text_align: Any? { values["text_align"] }
|
|
1801
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1802
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1803
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1804
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1805
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1806
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1807
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1808
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1809
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1810
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1811
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1812
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1813
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1814
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1815
|
+
public var transform: Any? { values["transform"] }
|
|
1816
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1817
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1818
|
+
public var refreshing: Bool? { values["refreshing"] as? Bool }
|
|
1819
|
+
public var on_refresh: Any? { values["on_refresh"] }
|
|
1820
|
+
public var ref: Any? { values["ref"] }
|
|
1821
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
public struct RowProps {
|
|
1825
|
+
public let values: [String: Any]
|
|
1826
|
+
public init(_ values: [String: Any]) throws {
|
|
1827
|
+
self.values = values
|
|
1828
|
+
}
|
|
1829
|
+
public var width: Any? { values["width"] }
|
|
1830
|
+
public var height: Any? { values["height"] }
|
|
1831
|
+
public var min_width: Any? { values["min_width"] }
|
|
1832
|
+
public var max_width: Any? { values["max_width"] }
|
|
1833
|
+
public var min_height: Any? { values["min_height"] }
|
|
1834
|
+
public var max_height: Any? { values["max_height"] }
|
|
1835
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1836
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1837
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1838
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1839
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1840
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1841
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1842
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1843
|
+
public var align_items: Any? { values["align_items"] }
|
|
1844
|
+
public var align_self: Any? { values["align_self"] }
|
|
1845
|
+
public var align_content: Any? { values["align_content"] }
|
|
1846
|
+
public var direction: Any? { values["direction"] }
|
|
1847
|
+
public var display: Any? { values["display"] }
|
|
1848
|
+
public var position: Any? { values["position"] }
|
|
1849
|
+
public var top: Any? { values["top"] }
|
|
1850
|
+
public var right: Any? { values["right"] }
|
|
1851
|
+
public var bottom: Any? { values["bottom"] }
|
|
1852
|
+
public var left: Any? { values["left"] }
|
|
1853
|
+
public var start: Any? { values["start"] }
|
|
1854
|
+
public var end: Any? { values["end"] }
|
|
1855
|
+
public var padding: Any? { values["padding"] }
|
|
1856
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1857
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1858
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1859
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1860
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1861
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1862
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1863
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1864
|
+
public var margin: Any? { values["margin"] }
|
|
1865
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1866
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1867
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1868
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1869
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1870
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1871
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1872
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1873
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1874
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1875
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1876
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1877
|
+
public var overflow: Any? { values["overflow"] }
|
|
1878
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1879
|
+
public var color: String? { values["color"] as? String }
|
|
1880
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1881
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1882
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1883
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1884
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1885
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1886
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1887
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1888
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1889
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1890
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
1891
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
1892
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
1893
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
1894
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
1895
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
1896
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
1897
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
1898
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
1899
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
1900
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
1901
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
1902
|
+
public var text_align: Any? { values["text_align"] }
|
|
1903
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
1904
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
1905
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
1906
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
1907
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
1908
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
1909
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
1910
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
1911
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
1912
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
1913
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
1914
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
1915
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
1916
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
1917
|
+
public var transform: Any? { values["transform"] }
|
|
1918
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
1919
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
1920
|
+
public var gestures: Any? { values["gestures"] }
|
|
1921
|
+
public var hit_slop: Any? { values["hit_slop"] }
|
|
1922
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
1923
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
1924
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
1925
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
1926
|
+
public var accessible: Any? { values["accessible"] }
|
|
1927
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
1928
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
1929
|
+
public var test_id: Any? { values["test_id"] }
|
|
1930
|
+
public var ref: Any? { values["ref"] }
|
|
1931
|
+
}
|
|
1932
|
+
|
|
1933
|
+
public struct SafeAreaViewProps {
|
|
1934
|
+
public let values: [String: Any]
|
|
1935
|
+
public init(_ values: [String: Any]) throws {
|
|
1936
|
+
self.values = values
|
|
1937
|
+
}
|
|
1938
|
+
public var width: Any? { values["width"] }
|
|
1939
|
+
public var height: Any? { values["height"] }
|
|
1940
|
+
public var min_width: Any? { values["min_width"] }
|
|
1941
|
+
public var max_width: Any? { values["max_width"] }
|
|
1942
|
+
public var min_height: Any? { values["min_height"] }
|
|
1943
|
+
public var max_height: Any? { values["max_height"] }
|
|
1944
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
1945
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
1946
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
1947
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
1948
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
1949
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
1950
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
1951
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
1952
|
+
public var align_items: Any? { values["align_items"] }
|
|
1953
|
+
public var align_self: Any? { values["align_self"] }
|
|
1954
|
+
public var align_content: Any? { values["align_content"] }
|
|
1955
|
+
public var direction: Any? { values["direction"] }
|
|
1956
|
+
public var display: Any? { values["display"] }
|
|
1957
|
+
public var position: Any? { values["position"] }
|
|
1958
|
+
public var top: Any? { values["top"] }
|
|
1959
|
+
public var right: Any? { values["right"] }
|
|
1960
|
+
public var bottom: Any? { values["bottom"] }
|
|
1961
|
+
public var left: Any? { values["left"] }
|
|
1962
|
+
public var start: Any? { values["start"] }
|
|
1963
|
+
public var end: Any? { values["end"] }
|
|
1964
|
+
public var padding: Any? { values["padding"] }
|
|
1965
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
1966
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
1967
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
1968
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
1969
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
1970
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
1971
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
1972
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
1973
|
+
public var margin: Any? { values["margin"] }
|
|
1974
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
1975
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
1976
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
1977
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
1978
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
1979
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
1980
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
1981
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
1982
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
1983
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
1984
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
1985
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
1986
|
+
public var overflow: Any? { values["overflow"] }
|
|
1987
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
1988
|
+
public var color: String? { values["color"] as? String }
|
|
1989
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
1990
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
1991
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
1992
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
1993
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
1994
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
1995
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
1996
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
1997
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
1998
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
1999
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2000
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2001
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2002
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2003
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2004
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2005
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2006
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2007
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2008
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2009
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2010
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2011
|
+
public var text_align: Any? { values["text_align"] }
|
|
2012
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2013
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2014
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2015
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2016
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2017
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2018
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2019
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2020
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2021
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2022
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2023
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2024
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2025
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2026
|
+
public var transform: Any? { values["transform"] }
|
|
2027
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2028
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2029
|
+
public var edges: Any? { values["edges"] }
|
|
2030
|
+
public var ref: Any? { values["ref"] }
|
|
2031
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
public struct ScreenProps {
|
|
2035
|
+
public let values: [String: Any]
|
|
2036
|
+
public init(_ values: [String: Any]) throws {
|
|
2037
|
+
self.values = values
|
|
2038
|
+
}
|
|
2039
|
+
public var width: Any? { values["width"] }
|
|
2040
|
+
public var height: Any? { values["height"] }
|
|
2041
|
+
public var min_width: Any? { values["min_width"] }
|
|
2042
|
+
public var max_width: Any? { values["max_width"] }
|
|
2043
|
+
public var min_height: Any? { values["min_height"] }
|
|
2044
|
+
public var max_height: Any? { values["max_height"] }
|
|
2045
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2046
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
2047
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2048
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2049
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2050
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2051
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2052
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2053
|
+
public var align_items: Any? { values["align_items"] }
|
|
2054
|
+
public var align_self: Any? { values["align_self"] }
|
|
2055
|
+
public var align_content: Any? { values["align_content"] }
|
|
2056
|
+
public var direction: Any? { values["direction"] }
|
|
2057
|
+
public var display: Any? { values["display"] }
|
|
2058
|
+
public var position: Any? { values["position"] }
|
|
2059
|
+
public var top: Any? { values["top"] }
|
|
2060
|
+
public var right: Any? { values["right"] }
|
|
2061
|
+
public var bottom: Any? { values["bottom"] }
|
|
2062
|
+
public var left: Any? { values["left"] }
|
|
2063
|
+
public var start: Any? { values["start"] }
|
|
2064
|
+
public var end: Any? { values["end"] }
|
|
2065
|
+
public var padding: Any? { values["padding"] }
|
|
2066
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2067
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2068
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2069
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2070
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2071
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2072
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2073
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2074
|
+
public var margin: Any? { values["margin"] }
|
|
2075
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2076
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2077
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2078
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2079
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2080
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2081
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2082
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2083
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2084
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2085
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2086
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2087
|
+
public var overflow: Any? { values["overflow"] }
|
|
2088
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
2089
|
+
public var color: String? { values["color"] as? String }
|
|
2090
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2091
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2092
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
2093
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2094
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2095
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2096
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2097
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2098
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2099
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2100
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2101
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2102
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2103
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2104
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2105
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2106
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2107
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2108
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2109
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2110
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2111
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2112
|
+
public var text_align: Any? { values["text_align"] }
|
|
2113
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2114
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2115
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2116
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2117
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2118
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2119
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2120
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2121
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2122
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2123
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2124
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2125
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2126
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2127
|
+
public var transform: Any? { values["transform"] }
|
|
2128
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2129
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2130
|
+
public var gestures: Any? { values["gestures"] }
|
|
2131
|
+
public var hit_slop: Any? { values["hit_slop"] }
|
|
2132
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2133
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
2134
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
2135
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
2136
|
+
public var accessible: Any? { values["accessible"] }
|
|
2137
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
2138
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
2139
|
+
public var test_id: Any? { values["test_id"] }
|
|
2140
|
+
public var ref: Any? { values["ref"] }
|
|
2141
|
+
public var route_key: String? { values["route_key"] as? String }
|
|
2142
|
+
public var title: String? { values["title"] as? String }
|
|
2143
|
+
public var active: Bool? { values["active"] as? Bool }
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
public struct ScreenStackProps {
|
|
2147
|
+
public let values: [String: Any]
|
|
2148
|
+
public init(_ values: [String: Any]) throws {
|
|
2149
|
+
self.values = values
|
|
2150
|
+
}
|
|
2151
|
+
public var width: Any? { values["width"] }
|
|
2152
|
+
public var height: Any? { values["height"] }
|
|
2153
|
+
public var min_width: Any? { values["min_width"] }
|
|
2154
|
+
public var max_width: Any? { values["max_width"] }
|
|
2155
|
+
public var min_height: Any? { values["min_height"] }
|
|
2156
|
+
public var max_height: Any? { values["max_height"] }
|
|
2157
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2158
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
2159
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2160
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2161
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2162
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2163
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2164
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2165
|
+
public var align_items: Any? { values["align_items"] }
|
|
2166
|
+
public var align_self: Any? { values["align_self"] }
|
|
2167
|
+
public var align_content: Any? { values["align_content"] }
|
|
2168
|
+
public var direction: Any? { values["direction"] }
|
|
2169
|
+
public var display: Any? { values["display"] }
|
|
2170
|
+
public var position: Any? { values["position"] }
|
|
2171
|
+
public var top: Any? { values["top"] }
|
|
2172
|
+
public var right: Any? { values["right"] }
|
|
2173
|
+
public var bottom: Any? { values["bottom"] }
|
|
2174
|
+
public var left: Any? { values["left"] }
|
|
2175
|
+
public var start: Any? { values["start"] }
|
|
2176
|
+
public var end: Any? { values["end"] }
|
|
2177
|
+
public var padding: Any? { values["padding"] }
|
|
2178
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2179
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2180
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2181
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2182
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2183
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2184
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2185
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2186
|
+
public var margin: Any? { values["margin"] }
|
|
2187
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2188
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2189
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2190
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2191
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2192
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2193
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2194
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2195
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2196
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2197
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2198
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2199
|
+
public var overflow: Any? { values["overflow"] }
|
|
2200
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
2201
|
+
public var color: String? { values["color"] as? String }
|
|
2202
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2203
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2204
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
2205
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2206
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2207
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2208
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2209
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2210
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2211
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2212
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2213
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2214
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2215
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2216
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2217
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2218
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2219
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2220
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2221
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2222
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2223
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2224
|
+
public var text_align: Any? { values["text_align"] }
|
|
2225
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2226
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2227
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2228
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2229
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2230
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2231
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2232
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2233
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2234
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2235
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2236
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2237
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2238
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2239
|
+
public var transform: Any? { values["transform"] }
|
|
2240
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2241
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2242
|
+
public var gestures: Any? { values["gestures"] }
|
|
2243
|
+
public var hit_slop: Any? { values["hit_slop"] }
|
|
2244
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2245
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
2246
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
2247
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
2248
|
+
public var accessible: Any? { values["accessible"] }
|
|
2249
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
2250
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
2251
|
+
public var test_id: Any? { values["test_id"] }
|
|
2252
|
+
public var ref: Any? { values["ref"] }
|
|
2253
|
+
public var on_native_back: Any? { values["on_native_back"] }
|
|
2254
|
+
}
|
|
2255
|
+
|
|
2256
|
+
public struct ScrollViewProps {
|
|
2257
|
+
public let values: [String: Any]
|
|
2258
|
+
public init(_ values: [String: Any]) throws {
|
|
2259
|
+
self.values = values
|
|
2260
|
+
}
|
|
2261
|
+
public var width: Any? { values["width"] }
|
|
2262
|
+
public var height: Any? { values["height"] }
|
|
2263
|
+
public var min_width: Any? { values["min_width"] }
|
|
2264
|
+
public var max_width: Any? { values["max_width"] }
|
|
2265
|
+
public var min_height: Any? { values["min_height"] }
|
|
2266
|
+
public var max_height: Any? { values["max_height"] }
|
|
2267
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2268
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
2269
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2270
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2271
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2272
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2273
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2274
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2275
|
+
public var align_items: Any? { values["align_items"] }
|
|
2276
|
+
public var align_self: Any? { values["align_self"] }
|
|
2277
|
+
public var align_content: Any? { values["align_content"] }
|
|
2278
|
+
public var direction: Any? { values["direction"] }
|
|
2279
|
+
public var display: Any? { values["display"] }
|
|
2280
|
+
public var position: Any? { values["position"] }
|
|
2281
|
+
public var top: Any? { values["top"] }
|
|
2282
|
+
public var right: Any? { values["right"] }
|
|
2283
|
+
public var bottom: Any? { values["bottom"] }
|
|
2284
|
+
public var left: Any? { values["left"] }
|
|
2285
|
+
public var start: Any? { values["start"] }
|
|
2286
|
+
public var end: Any? { values["end"] }
|
|
2287
|
+
public var padding: Any? { values["padding"] }
|
|
2288
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2289
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2290
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2291
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2292
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2293
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2294
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2295
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2296
|
+
public var margin: Any? { values["margin"] }
|
|
2297
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2298
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2299
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2300
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2301
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2302
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2303
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2304
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2305
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2306
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2307
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2308
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2309
|
+
public var overflow: Any? { values["overflow"] }
|
|
2310
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
2311
|
+
public var color: String? { values["color"] as? String }
|
|
2312
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2313
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2314
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
2315
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2316
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2317
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2318
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2319
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2320
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2321
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2322
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2323
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2324
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2325
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2326
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2327
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2328
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2329
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2330
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2331
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2332
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2333
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2334
|
+
public var text_align: Any? { values["text_align"] }
|
|
2335
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2336
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2337
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2338
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2339
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2340
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2341
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2342
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2343
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2344
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2345
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2346
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2347
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2348
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2349
|
+
public var transform: Any? { values["transform"] }
|
|
2350
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2351
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2352
|
+
public var refresh_control: Any? { values["refresh_control"] }
|
|
2353
|
+
public var scroll_axis: Any? { values["scroll_axis"] }
|
|
2354
|
+
public var on_scroll: Any? { values["on_scroll"] }
|
|
2355
|
+
public var shows_scroll_indicator: Bool? { values["shows_scroll_indicator"] as? Bool }
|
|
2356
|
+
public var paging_enabled: Bool? { values["paging_enabled"] as? Bool }
|
|
2357
|
+
public var bounces: Bool? { values["bounces"] as? Bool }
|
|
2358
|
+
public var content_container_style: Any? { values["content_container_style"] }
|
|
2359
|
+
public var keyboard_dismiss_mode: Any? { values["keyboard_dismiss_mode"] }
|
|
2360
|
+
public var ref: Any? { values["ref"] }
|
|
2361
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2362
|
+
}
|
|
2363
|
+
|
|
2364
|
+
public struct SectionListProps {
|
|
2365
|
+
public let values: [String: Any]
|
|
2366
|
+
public init(_ values: [String: Any]) throws {
|
|
2367
|
+
self.values = values
|
|
2368
|
+
}
|
|
2369
|
+
public var width: Any? { values["width"] }
|
|
2370
|
+
public var height: Any? { values["height"] }
|
|
2371
|
+
public var min_width: Any? { values["min_width"] }
|
|
2372
|
+
public var max_width: Any? { values["max_width"] }
|
|
2373
|
+
public var min_height: Any? { values["min_height"] }
|
|
2374
|
+
public var max_height: Any? { values["max_height"] }
|
|
2375
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2376
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
2377
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2378
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2379
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2380
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2381
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2382
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2383
|
+
public var align_items: Any? { values["align_items"] }
|
|
2384
|
+
public var align_self: Any? { values["align_self"] }
|
|
2385
|
+
public var align_content: Any? { values["align_content"] }
|
|
2386
|
+
public var direction: Any? { values["direction"] }
|
|
2387
|
+
public var display: Any? { values["display"] }
|
|
2388
|
+
public var position: Any? { values["position"] }
|
|
2389
|
+
public var top: Any? { values["top"] }
|
|
2390
|
+
public var right: Any? { values["right"] }
|
|
2391
|
+
public var bottom: Any? { values["bottom"] }
|
|
2392
|
+
public var left: Any? { values["left"] }
|
|
2393
|
+
public var start: Any? { values["start"] }
|
|
2394
|
+
public var end: Any? { values["end"] }
|
|
2395
|
+
public var padding: Any? { values["padding"] }
|
|
2396
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2397
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2398
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2399
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2400
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2401
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2402
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2403
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2404
|
+
public var margin: Any? { values["margin"] }
|
|
2405
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2406
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2407
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2408
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2409
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2410
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2411
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2412
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2413
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2414
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2415
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2416
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2417
|
+
public var overflow: Any? { values["overflow"] }
|
|
2418
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
2419
|
+
public var color: String? { values["color"] as? String }
|
|
2420
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2421
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2422
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
2423
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2424
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2425
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2426
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2427
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2428
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2429
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2430
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2431
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2432
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2433
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2434
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2435
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2436
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2437
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2438
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2439
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2440
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2441
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2442
|
+
public var text_align: Any? { values["text_align"] }
|
|
2443
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2444
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2445
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2446
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2447
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2448
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2449
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2450
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2451
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2452
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2453
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2454
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2455
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2456
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2457
|
+
public var transform: Any? { values["transform"] }
|
|
2458
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2459
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2460
|
+
public var sections: Any? { values["sections"] }
|
|
2461
|
+
public var render_item: Any? { values["render_item"] }
|
|
2462
|
+
public var render_section_header: Any? { values["render_section_header"] }
|
|
2463
|
+
public var key_extractor: Any? { values["key_extractor"] }
|
|
2464
|
+
public var item_height: Any? { values["item_height"] }
|
|
2465
|
+
public var get_item_height: Any? { values["get_item_height"] }
|
|
2466
|
+
public var estimated_item_height: Any? { values["estimated_item_height"] }
|
|
2467
|
+
public var section_header_height: Any? { values["section_header_height"] }
|
|
2468
|
+
public var separator_height: Double? { values["separator_height"] as? Double }
|
|
2469
|
+
public var refresh_control: Any? { values["refresh_control"] }
|
|
2470
|
+
public var list_header: Any? { values["list_header"] }
|
|
2471
|
+
public var list_footer: Any? { values["list_footer"] }
|
|
2472
|
+
public var list_empty: Any? { values["list_empty"] }
|
|
2473
|
+
public var on_end_reached: Any? { values["on_end_reached"] }
|
|
2474
|
+
public var on_end_reached_threshold: Double? { values["on_end_reached_threshold"] as? Double }
|
|
2475
|
+
public var on_scroll: Any? { values["on_scroll"] }
|
|
2476
|
+
public var ref: Any? { values["ref"] }
|
|
2477
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2478
|
+
}
|
|
2479
|
+
|
|
2480
|
+
public struct SegmentedControlProps {
|
|
2481
|
+
public let values: [String: Any]
|
|
2482
|
+
public init(_ values: [String: Any]) throws {
|
|
2483
|
+
self.values = values
|
|
2484
|
+
}
|
|
2485
|
+
public var width: Any? { values["width"] }
|
|
2486
|
+
public var height: Any? { values["height"] }
|
|
2487
|
+
public var min_width: Any? { values["min_width"] }
|
|
2488
|
+
public var max_width: Any? { values["max_width"] }
|
|
2489
|
+
public var min_height: Any? { values["min_height"] }
|
|
2490
|
+
public var max_height: Any? { values["max_height"] }
|
|
2491
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2492
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
2493
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2494
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2495
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2496
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2497
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2498
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2499
|
+
public var align_items: Any? { values["align_items"] }
|
|
2500
|
+
public var align_self: Any? { values["align_self"] }
|
|
2501
|
+
public var align_content: Any? { values["align_content"] }
|
|
2502
|
+
public var direction: Any? { values["direction"] }
|
|
2503
|
+
public var display: Any? { values["display"] }
|
|
2504
|
+
public var position: Any? { values["position"] }
|
|
2505
|
+
public var top: Any? { values["top"] }
|
|
2506
|
+
public var right: Any? { values["right"] }
|
|
2507
|
+
public var bottom: Any? { values["bottom"] }
|
|
2508
|
+
public var left: Any? { values["left"] }
|
|
2509
|
+
public var start: Any? { values["start"] }
|
|
2510
|
+
public var end: Any? { values["end"] }
|
|
2511
|
+
public var padding: Any? { values["padding"] }
|
|
2512
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2513
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2514
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2515
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2516
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2517
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2518
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2519
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2520
|
+
public var margin: Any? { values["margin"] }
|
|
2521
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2522
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2523
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2524
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2525
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2526
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2527
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2528
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2529
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2530
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2531
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2532
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2533
|
+
public var overflow: Any? { values["overflow"] }
|
|
2534
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
2535
|
+
public var color: String? { values["color"] as? String }
|
|
2536
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2537
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2538
|
+
public var tint_color: Any? { values["tint_color"] }
|
|
2539
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2540
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2541
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2542
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2543
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2544
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2545
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2546
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2547
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2548
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2549
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2550
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2551
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2552
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2553
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2554
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2555
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2556
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2557
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2558
|
+
public var text_align: Any? { values["text_align"] }
|
|
2559
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2560
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2561
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2562
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2563
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2564
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2565
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2566
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2567
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2568
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2569
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2570
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2571
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2572
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2573
|
+
public var transform: Any? { values["transform"] }
|
|
2574
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2575
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2576
|
+
public var segments: Any? { values["segments"] }
|
|
2577
|
+
public var selected_index: Int? { values["selected_index"] as? Int }
|
|
2578
|
+
public var on_change: Any? { values["on_change"] }
|
|
2579
|
+
public var disabled: Bool? { values["disabled"] as? Bool }
|
|
2580
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
2581
|
+
public var accessible: Any? { values["accessible"] }
|
|
2582
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
2583
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
2584
|
+
public var test_id: Any? { values["test_id"] }
|
|
2585
|
+
public var ref: Any? { values["ref"] }
|
|
2586
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2587
|
+
}
|
|
2588
|
+
|
|
2589
|
+
public struct SliderProps {
|
|
2590
|
+
public let values: [String: Any]
|
|
2591
|
+
public init(_ values: [String: Any]) throws {
|
|
2592
|
+
self.values = values
|
|
2593
|
+
}
|
|
2594
|
+
public var width: Any? { values["width"] }
|
|
2595
|
+
public var height: Any? { values["height"] }
|
|
2596
|
+
public var min_width: Any? { values["min_width"] }
|
|
2597
|
+
public var max_width: Any? { values["max_width"] }
|
|
2598
|
+
public var min_height: Any? { values["min_height"] }
|
|
2599
|
+
public var max_height: Any? { values["max_height"] }
|
|
2600
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2601
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
2602
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2603
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2604
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2605
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2606
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2607
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2608
|
+
public var align_items: Any? { values["align_items"] }
|
|
2609
|
+
public var align_self: Any? { values["align_self"] }
|
|
2610
|
+
public var align_content: Any? { values["align_content"] }
|
|
2611
|
+
public var direction: Any? { values["direction"] }
|
|
2612
|
+
public var display: Any? { values["display"] }
|
|
2613
|
+
public var position: Any? { values["position"] }
|
|
2614
|
+
public var top: Any? { values["top"] }
|
|
2615
|
+
public var right: Any? { values["right"] }
|
|
2616
|
+
public var bottom: Any? { values["bottom"] }
|
|
2617
|
+
public var left: Any? { values["left"] }
|
|
2618
|
+
public var start: Any? { values["start"] }
|
|
2619
|
+
public var end: Any? { values["end"] }
|
|
2620
|
+
public var padding: Any? { values["padding"] }
|
|
2621
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2622
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2623
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2624
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2625
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2626
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2627
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2628
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2629
|
+
public var margin: Any? { values["margin"] }
|
|
2630
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2631
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2632
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2633
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2634
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2635
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2636
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2637
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2638
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2639
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2640
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2641
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2642
|
+
public var overflow: Any? { values["overflow"] }
|
|
2643
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
2644
|
+
public var color: String? { values["color"] as? String }
|
|
2645
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2646
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2647
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
2648
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2649
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2650
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2651
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2652
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2653
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2654
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2655
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2656
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2657
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2658
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2659
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2660
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2661
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2662
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2663
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2664
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2665
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2666
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2667
|
+
public var text_align: Any? { values["text_align"] }
|
|
2668
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2669
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2670
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2671
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2672
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2673
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2674
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2675
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2676
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2677
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2678
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2679
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2680
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2681
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2682
|
+
public var transform: Any? { values["transform"] }
|
|
2683
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2684
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2685
|
+
public var value: Double? { values["value"] as? Double }
|
|
2686
|
+
public var min_value: Double? { values["min_value"] as? Double }
|
|
2687
|
+
public var max_value: Double? { values["max_value"] as? Double }
|
|
2688
|
+
public var on_change: Any? { values["on_change"] }
|
|
2689
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
2690
|
+
public var ref: Any? { values["ref"] }
|
|
2691
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2692
|
+
}
|
|
2693
|
+
|
|
2694
|
+
public struct SpacerProps {
|
|
2695
|
+
public let values: [String: Any]
|
|
2696
|
+
public init(_ values: [String: Any]) throws {
|
|
2697
|
+
self.values = values
|
|
2698
|
+
}
|
|
2699
|
+
public var width: Any? { values["width"] }
|
|
2700
|
+
public var height: Any? { values["height"] }
|
|
2701
|
+
public var min_width: Any? { values["min_width"] }
|
|
2702
|
+
public var max_width: Any? { values["max_width"] }
|
|
2703
|
+
public var min_height: Any? { values["min_height"] }
|
|
2704
|
+
public var max_height: Any? { values["max_height"] }
|
|
2705
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2706
|
+
public var flex: Any? { values["flex"] }
|
|
2707
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2708
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2709
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2710
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2711
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2712
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2713
|
+
public var align_items: Any? { values["align_items"] }
|
|
2714
|
+
public var align_self: Any? { values["align_self"] }
|
|
2715
|
+
public var align_content: Any? { values["align_content"] }
|
|
2716
|
+
public var direction: Any? { values["direction"] }
|
|
2717
|
+
public var display: Any? { values["display"] }
|
|
2718
|
+
public var position: Any? { values["position"] }
|
|
2719
|
+
public var top: Any? { values["top"] }
|
|
2720
|
+
public var right: Any? { values["right"] }
|
|
2721
|
+
public var bottom: Any? { values["bottom"] }
|
|
2722
|
+
public var left: Any? { values["left"] }
|
|
2723
|
+
public var start: Any? { values["start"] }
|
|
2724
|
+
public var end: Any? { values["end"] }
|
|
2725
|
+
public var padding: Any? { values["padding"] }
|
|
2726
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2727
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2728
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2729
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2730
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2731
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2732
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2733
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2734
|
+
public var margin: Any? { values["margin"] }
|
|
2735
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2736
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2737
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2738
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2739
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2740
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2741
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2742
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2743
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2744
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2745
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2746
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2747
|
+
public var overflow: Any? { values["overflow"] }
|
|
2748
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
2749
|
+
public var color: String? { values["color"] as? String }
|
|
2750
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2751
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2752
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
2753
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2754
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2755
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2756
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2757
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2758
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2759
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2760
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2761
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2762
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2763
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2764
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2765
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2766
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2767
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2768
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2769
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2770
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2771
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2772
|
+
public var text_align: Any? { values["text_align"] }
|
|
2773
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2774
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2775
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2776
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2777
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2778
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2779
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2780
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2781
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2782
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2783
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2784
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2785
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2786
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2787
|
+
public var transform: Any? { values["transform"] }
|
|
2788
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2789
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2790
|
+
public var size: Any? { values["size"] }
|
|
2791
|
+
public var ref: Any? { values["ref"] }
|
|
2792
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2793
|
+
}
|
|
2794
|
+
|
|
2795
|
+
public struct StatusBarProps {
|
|
2796
|
+
public let values: [String: Any]
|
|
2797
|
+
public init(_ values: [String: Any]) throws {
|
|
2798
|
+
self.values = values
|
|
2799
|
+
}
|
|
2800
|
+
public var width: Any? { values["width"] }
|
|
2801
|
+
public var height: Any? { values["height"] }
|
|
2802
|
+
public var min_width: Any? { values["min_width"] }
|
|
2803
|
+
public var max_width: Any? { values["max_width"] }
|
|
2804
|
+
public var min_height: Any? { values["min_height"] }
|
|
2805
|
+
public var max_height: Any? { values["max_height"] }
|
|
2806
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2807
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
2808
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2809
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2810
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2811
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2812
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2813
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2814
|
+
public var align_items: Any? { values["align_items"] }
|
|
2815
|
+
public var align_self: Any? { values["align_self"] }
|
|
2816
|
+
public var align_content: Any? { values["align_content"] }
|
|
2817
|
+
public var direction: Any? { values["direction"] }
|
|
2818
|
+
public var display: Any? { values["display"] }
|
|
2819
|
+
public var position: Any? { values["position"] }
|
|
2820
|
+
public var top: Any? { values["top"] }
|
|
2821
|
+
public var right: Any? { values["right"] }
|
|
2822
|
+
public var bottom: Any? { values["bottom"] }
|
|
2823
|
+
public var left: Any? { values["left"] }
|
|
2824
|
+
public var start: Any? { values["start"] }
|
|
2825
|
+
public var end: Any? { values["end"] }
|
|
2826
|
+
public var padding: Any? { values["padding"] }
|
|
2827
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2828
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2829
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2830
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2831
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2832
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2833
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2834
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2835
|
+
public var margin: Any? { values["margin"] }
|
|
2836
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2837
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2838
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2839
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2840
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2841
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2842
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2843
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2844
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2845
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2846
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2847
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2848
|
+
public var overflow: Any? { values["overflow"] }
|
|
2849
|
+
public var background_color: Any? { values["background_color"] }
|
|
2850
|
+
public var color: String? { values["color"] as? String }
|
|
2851
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2852
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2853
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
2854
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2855
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2856
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2857
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2858
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2859
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2860
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2861
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2862
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2863
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2864
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2865
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2866
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2867
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2868
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2869
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2870
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2871
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2872
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2873
|
+
public var text_align: Any? { values["text_align"] }
|
|
2874
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2875
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2876
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2877
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2878
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2879
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2880
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2881
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2882
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2883
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2884
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2885
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2886
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2887
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2888
|
+
public var transform: Any? { values["transform"] }
|
|
2889
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2890
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2891
|
+
public var bar_style: Any? { values["bar_style"] }
|
|
2892
|
+
public var hidden: Any? { values["hidden"] }
|
|
2893
|
+
public var ref: Any? { values["ref"] }
|
|
2894
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2895
|
+
}
|
|
2896
|
+
|
|
2897
|
+
public struct SuspenseProps {
|
|
2898
|
+
public let values: [String: Any]
|
|
2899
|
+
public init(_ values: [String: Any]) throws {
|
|
2900
|
+
self.values = values
|
|
2901
|
+
}
|
|
2902
|
+
public var width: Any? { values["width"] }
|
|
2903
|
+
public var height: Any? { values["height"] }
|
|
2904
|
+
public var min_width: Any? { values["min_width"] }
|
|
2905
|
+
public var max_width: Any? { values["max_width"] }
|
|
2906
|
+
public var min_height: Any? { values["min_height"] }
|
|
2907
|
+
public var max_height: Any? { values["max_height"] }
|
|
2908
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
2909
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
2910
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
2911
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
2912
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
2913
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
2914
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
2915
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
2916
|
+
public var align_items: Any? { values["align_items"] }
|
|
2917
|
+
public var align_self: Any? { values["align_self"] }
|
|
2918
|
+
public var align_content: Any? { values["align_content"] }
|
|
2919
|
+
public var direction: Any? { values["direction"] }
|
|
2920
|
+
public var display: Any? { values["display"] }
|
|
2921
|
+
public var position: Any? { values["position"] }
|
|
2922
|
+
public var top: Any? { values["top"] }
|
|
2923
|
+
public var right: Any? { values["right"] }
|
|
2924
|
+
public var bottom: Any? { values["bottom"] }
|
|
2925
|
+
public var left: Any? { values["left"] }
|
|
2926
|
+
public var start: Any? { values["start"] }
|
|
2927
|
+
public var end: Any? { values["end"] }
|
|
2928
|
+
public var padding: Any? { values["padding"] }
|
|
2929
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
2930
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
2931
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
2932
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
2933
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
2934
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
2935
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
2936
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
2937
|
+
public var margin: Any? { values["margin"] }
|
|
2938
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
2939
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
2940
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
2941
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
2942
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
2943
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
2944
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
2945
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
2946
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
2947
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
2948
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
2949
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
2950
|
+
public var overflow: Any? { values["overflow"] }
|
|
2951
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
2952
|
+
public var color: String? { values["color"] as? String }
|
|
2953
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
2954
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
2955
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
2956
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
2957
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
2958
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
2959
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
2960
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
2961
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
2962
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
2963
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
2964
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
2965
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
2966
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
2967
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
2968
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
2969
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
2970
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
2971
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
2972
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
2973
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
2974
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
2975
|
+
public var text_align: Any? { values["text_align"] }
|
|
2976
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
2977
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
2978
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
2979
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
2980
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
2981
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
2982
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
2983
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
2984
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
2985
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
2986
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
2987
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
2988
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
2989
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
2990
|
+
public var transform: Any? { values["transform"] }
|
|
2991
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
2992
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
2993
|
+
public var fallback: Any? { values["fallback"] }
|
|
2994
|
+
public var ref: Any? { values["ref"] }
|
|
2995
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
2996
|
+
}
|
|
2997
|
+
|
|
2998
|
+
public struct SwitchProps {
|
|
2999
|
+
public let values: [String: Any]
|
|
3000
|
+
public init(_ values: [String: Any]) throws {
|
|
3001
|
+
self.values = values
|
|
3002
|
+
}
|
|
3003
|
+
public var width: Any? { values["width"] }
|
|
3004
|
+
public var height: Any? { values["height"] }
|
|
3005
|
+
public var min_width: Any? { values["min_width"] }
|
|
3006
|
+
public var max_width: Any? { values["max_width"] }
|
|
3007
|
+
public var min_height: Any? { values["min_height"] }
|
|
3008
|
+
public var max_height: Any? { values["max_height"] }
|
|
3009
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
3010
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
3011
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
3012
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
3013
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
3014
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
3015
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
3016
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
3017
|
+
public var align_items: Any? { values["align_items"] }
|
|
3018
|
+
public var align_self: Any? { values["align_self"] }
|
|
3019
|
+
public var align_content: Any? { values["align_content"] }
|
|
3020
|
+
public var direction: Any? { values["direction"] }
|
|
3021
|
+
public var display: Any? { values["display"] }
|
|
3022
|
+
public var position: Any? { values["position"] }
|
|
3023
|
+
public var top: Any? { values["top"] }
|
|
3024
|
+
public var right: Any? { values["right"] }
|
|
3025
|
+
public var bottom: Any? { values["bottom"] }
|
|
3026
|
+
public var left: Any? { values["left"] }
|
|
3027
|
+
public var start: Any? { values["start"] }
|
|
3028
|
+
public var end: Any? { values["end"] }
|
|
3029
|
+
public var padding: Any? { values["padding"] }
|
|
3030
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
3031
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
3032
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
3033
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
3034
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
3035
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
3036
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
3037
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
3038
|
+
public var margin: Any? { values["margin"] }
|
|
3039
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
3040
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
3041
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
3042
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
3043
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
3044
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
3045
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
3046
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
3047
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
3048
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
3049
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
3050
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
3051
|
+
public var overflow: Any? { values["overflow"] }
|
|
3052
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
3053
|
+
public var color: String? { values["color"] as? String }
|
|
3054
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
3055
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
3056
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
3057
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
3058
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
3059
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
3060
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
3061
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
3062
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
3063
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
3064
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
3065
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
3066
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
3067
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
3068
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
3069
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
3070
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
3071
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
3072
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
3073
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
3074
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
3075
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
3076
|
+
public var text_align: Any? { values["text_align"] }
|
|
3077
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
3078
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
3079
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
3080
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
3081
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
3082
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
3083
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
3084
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
3085
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
3086
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
3087
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
3088
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
3089
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
3090
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
3091
|
+
public var transform: Any? { values["transform"] }
|
|
3092
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
3093
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
3094
|
+
public var value: Bool? { values["value"] as? Bool }
|
|
3095
|
+
public var on_change: Any? { values["on_change"] }
|
|
3096
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
3097
|
+
public var ref: Any? { values["ref"] }
|
|
3098
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
3099
|
+
}
|
|
3100
|
+
|
|
3101
|
+
public struct TextProps {
|
|
3102
|
+
public let values: [String: Any]
|
|
3103
|
+
public init(_ values: [String: Any]) throws {
|
|
3104
|
+
self.values = values
|
|
3105
|
+
}
|
|
3106
|
+
public var width: Any? { values["width"] }
|
|
3107
|
+
public var height: Any? { values["height"] }
|
|
3108
|
+
public var min_width: Any? { values["min_width"] }
|
|
3109
|
+
public var max_width: Any? { values["max_width"] }
|
|
3110
|
+
public var min_height: Any? { values["min_height"] }
|
|
3111
|
+
public var max_height: Any? { values["max_height"] }
|
|
3112
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
3113
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
3114
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
3115
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
3116
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
3117
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
3118
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
3119
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
3120
|
+
public var align_items: Any? { values["align_items"] }
|
|
3121
|
+
public var align_self: Any? { values["align_self"] }
|
|
3122
|
+
public var align_content: Any? { values["align_content"] }
|
|
3123
|
+
public var direction: Any? { values["direction"] }
|
|
3124
|
+
public var display: Any? { values["display"] }
|
|
3125
|
+
public var position: Any? { values["position"] }
|
|
3126
|
+
public var top: Any? { values["top"] }
|
|
3127
|
+
public var right: Any? { values["right"] }
|
|
3128
|
+
public var bottom: Any? { values["bottom"] }
|
|
3129
|
+
public var left: Any? { values["left"] }
|
|
3130
|
+
public var start: Any? { values["start"] }
|
|
3131
|
+
public var end: Any? { values["end"] }
|
|
3132
|
+
public var padding: Any? { values["padding"] }
|
|
3133
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
3134
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
3135
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
3136
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
3137
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
3138
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
3139
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
3140
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
3141
|
+
public var margin: Any? { values["margin"] }
|
|
3142
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
3143
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
3144
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
3145
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
3146
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
3147
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
3148
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
3149
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
3150
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
3151
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
3152
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
3153
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
3154
|
+
public var overflow: Any? { values["overflow"] }
|
|
3155
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
3156
|
+
public var color: String? { values["color"] as? String }
|
|
3157
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
3158
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
3159
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
3160
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
3161
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
3162
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
3163
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
3164
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
3165
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
3166
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
3167
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
3168
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
3169
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
3170
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
3171
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
3172
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
3173
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
3174
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
3175
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
3176
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
3177
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
3178
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
3179
|
+
public var text_align: Any? { values["text_align"] }
|
|
3180
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
3181
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
3182
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
3183
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
3184
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
3185
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
3186
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
3187
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
3188
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
3189
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
3190
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
3191
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
3192
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
3193
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
3194
|
+
public var transform: Any? { values["transform"] }
|
|
3195
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
3196
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
3197
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
3198
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
3199
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
3200
|
+
public var accessible: Any? { values["accessible"] }
|
|
3201
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
3202
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
3203
|
+
public var test_id: Any? { values["test_id"] }
|
|
3204
|
+
public var ref: Any? { values["ref"] }
|
|
3205
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
3206
|
+
public var text: String? { values["text"] as? String }
|
|
3207
|
+
public var spans: Any? { values["spans"] }
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
public struct TextInputProps {
|
|
3211
|
+
public let values: [String: Any]
|
|
3212
|
+
public init(_ values: [String: Any]) throws {
|
|
3213
|
+
self.values = values
|
|
3214
|
+
}
|
|
3215
|
+
public var width: Any? { values["width"] }
|
|
3216
|
+
public var height: Any? { values["height"] }
|
|
3217
|
+
public var min_width: Any? { values["min_width"] }
|
|
3218
|
+
public var max_width: Any? { values["max_width"] }
|
|
3219
|
+
public var min_height: Any? { values["min_height"] }
|
|
3220
|
+
public var max_height: Any? { values["max_height"] }
|
|
3221
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
3222
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
3223
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
3224
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
3225
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
3226
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
3227
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
3228
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
3229
|
+
public var align_items: Any? { values["align_items"] }
|
|
3230
|
+
public var align_self: Any? { values["align_self"] }
|
|
3231
|
+
public var align_content: Any? { values["align_content"] }
|
|
3232
|
+
public var direction: Any? { values["direction"] }
|
|
3233
|
+
public var display: Any? { values["display"] }
|
|
3234
|
+
public var position: Any? { values["position"] }
|
|
3235
|
+
public var top: Any? { values["top"] }
|
|
3236
|
+
public var right: Any? { values["right"] }
|
|
3237
|
+
public var bottom: Any? { values["bottom"] }
|
|
3238
|
+
public var left: Any? { values["left"] }
|
|
3239
|
+
public var start: Any? { values["start"] }
|
|
3240
|
+
public var end: Any? { values["end"] }
|
|
3241
|
+
public var padding: Any? { values["padding"] }
|
|
3242
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
3243
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
3244
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
3245
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
3246
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
3247
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
3248
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
3249
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
3250
|
+
public var margin: Any? { values["margin"] }
|
|
3251
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
3252
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
3253
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
3254
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
3255
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
3256
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
3257
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
3258
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
3259
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
3260
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
3261
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
3262
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
3263
|
+
public var overflow: Any? { values["overflow"] }
|
|
3264
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
3265
|
+
public var color: String? { values["color"] as? String }
|
|
3266
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
3267
|
+
public var placeholder_color: Any? { values["placeholder_color"] }
|
|
3268
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
3269
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
3270
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
3271
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
3272
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
3273
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
3274
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
3275
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
3276
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
3277
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
3278
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
3279
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
3280
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
3281
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
3282
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
3283
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
3284
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
3285
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
3286
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
3287
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
3288
|
+
public var text_align: Any? { values["text_align"] }
|
|
3289
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
3290
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
3291
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
3292
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
3293
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
3294
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
3295
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
3296
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
3297
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
3298
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
3299
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
3300
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
3301
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
3302
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
3303
|
+
public var transform: Any? { values["transform"] }
|
|
3304
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
3305
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
3306
|
+
public var value: String? { values["value"] as? String }
|
|
3307
|
+
public var placeholder: Any? { values["placeholder"] }
|
|
3308
|
+
public var on_change: Any? { values["on_change"] }
|
|
3309
|
+
public var on_submit: Any? { values["on_submit"] }
|
|
3310
|
+
public var secure: Bool? { values["secure"] as? Bool }
|
|
3311
|
+
public var multiline: Bool? { values["multiline"] as? Bool }
|
|
3312
|
+
public var keyboard_type: Any? { values["keyboard_type"] }
|
|
3313
|
+
public var auto_capitalize: Any? { values["auto_capitalize"] }
|
|
3314
|
+
public var auto_correct: Any? { values["auto_correct"] }
|
|
3315
|
+
public var auto_focus: Bool? { values["auto_focus"] as? Bool }
|
|
3316
|
+
public var return_key_type: Any? { values["return_key_type"] }
|
|
3317
|
+
public var max_length: Any? { values["max_length"] }
|
|
3318
|
+
public var editable: Bool? { values["editable"] as? Bool }
|
|
3319
|
+
public var clear_button: Bool? { values["clear_button"] as? Bool }
|
|
3320
|
+
public var on_focus: Any? { values["on_focus"] }
|
|
3321
|
+
public var on_blur: Any? { values["on_blur"] }
|
|
3322
|
+
public var selection_color: Any? { values["selection_color"] }
|
|
3323
|
+
public var text_content_type: Any? { values["text_content_type"] }
|
|
3324
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
3325
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
3326
|
+
public var accessible: Any? { values["accessible"] }
|
|
3327
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
3328
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
3329
|
+
public var test_id: Any? { values["test_id"] }
|
|
3330
|
+
public var ref: Any? { values["ref"] }
|
|
3331
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
3332
|
+
}
|
|
3333
|
+
|
|
3334
|
+
public struct TouchableOpacityProps {
|
|
3335
|
+
public let values: [String: Any]
|
|
3336
|
+
public init(_ values: [String: Any]) throws {
|
|
3337
|
+
self.values = values
|
|
3338
|
+
}
|
|
3339
|
+
public var width: Any? { values["width"] }
|
|
3340
|
+
public var height: Any? { values["height"] }
|
|
3341
|
+
public var min_width: Any? { values["min_width"] }
|
|
3342
|
+
public var max_width: Any? { values["max_width"] }
|
|
3343
|
+
public var min_height: Any? { values["min_height"] }
|
|
3344
|
+
public var max_height: Any? { values["max_height"] }
|
|
3345
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
3346
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
3347
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
3348
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
3349
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
3350
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
3351
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
3352
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
3353
|
+
public var align_items: Any? { values["align_items"] }
|
|
3354
|
+
public var align_self: Any? { values["align_self"] }
|
|
3355
|
+
public var align_content: Any? { values["align_content"] }
|
|
3356
|
+
public var direction: Any? { values["direction"] }
|
|
3357
|
+
public var display: Any? { values["display"] }
|
|
3358
|
+
public var position: Any? { values["position"] }
|
|
3359
|
+
public var top: Any? { values["top"] }
|
|
3360
|
+
public var right: Any? { values["right"] }
|
|
3361
|
+
public var bottom: Any? { values["bottom"] }
|
|
3362
|
+
public var left: Any? { values["left"] }
|
|
3363
|
+
public var start: Any? { values["start"] }
|
|
3364
|
+
public var end: Any? { values["end"] }
|
|
3365
|
+
public var padding: Any? { values["padding"] }
|
|
3366
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
3367
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
3368
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
3369
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
3370
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
3371
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
3372
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
3373
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
3374
|
+
public var margin: Any? { values["margin"] }
|
|
3375
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
3376
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
3377
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
3378
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
3379
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
3380
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
3381
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
3382
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
3383
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
3384
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
3385
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
3386
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
3387
|
+
public var overflow: Any? { values["overflow"] }
|
|
3388
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
3389
|
+
public var color: String? { values["color"] as? String }
|
|
3390
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
3391
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
3392
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
3393
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
3394
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
3395
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
3396
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
3397
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
3398
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
3399
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
3400
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
3401
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
3402
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
3403
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
3404
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
3405
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
3406
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
3407
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
3408
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
3409
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
3410
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
3411
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
3412
|
+
public var text_align: Any? { values["text_align"] }
|
|
3413
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
3414
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
3415
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
3416
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
3417
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
3418
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
3419
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
3420
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
3421
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
3422
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
3423
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
3424
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
3425
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
3426
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
3427
|
+
public var transform: Any? { values["transform"] }
|
|
3428
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
3429
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
3430
|
+
public var on_press: Any? { values["on_press"] }
|
|
3431
|
+
public var on_long_press: Any? { values["on_long_press"] }
|
|
3432
|
+
public var active_opacity: Double? { values["active_opacity"] as? Double }
|
|
3433
|
+
public var disabled: Bool? { values["disabled"] as? Bool }
|
|
3434
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
3435
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
3436
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
3437
|
+
public var accessible: Any? { values["accessible"] }
|
|
3438
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
3439
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
3440
|
+
public var test_id: Any? { values["test_id"] }
|
|
3441
|
+
public var ref: Any? { values["ref"] }
|
|
3442
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
3443
|
+
}
|
|
3444
|
+
|
|
3445
|
+
public struct ViewProps {
|
|
3446
|
+
public let values: [String: Any]
|
|
3447
|
+
public init(_ values: [String: Any]) throws {
|
|
3448
|
+
self.values = values
|
|
3449
|
+
}
|
|
3450
|
+
public var width: Any? { values["width"] }
|
|
3451
|
+
public var height: Any? { values["height"] }
|
|
3452
|
+
public var min_width: Any? { values["min_width"] }
|
|
3453
|
+
public var max_width: Any? { values["max_width"] }
|
|
3454
|
+
public var min_height: Any? { values["min_height"] }
|
|
3455
|
+
public var max_height: Any? { values["max_height"] }
|
|
3456
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
3457
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
3458
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
3459
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
3460
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
3461
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
3462
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
3463
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
3464
|
+
public var align_items: Any? { values["align_items"] }
|
|
3465
|
+
public var align_self: Any? { values["align_self"] }
|
|
3466
|
+
public var align_content: Any? { values["align_content"] }
|
|
3467
|
+
public var direction: Any? { values["direction"] }
|
|
3468
|
+
public var display: Any? { values["display"] }
|
|
3469
|
+
public var position: Any? { values["position"] }
|
|
3470
|
+
public var top: Any? { values["top"] }
|
|
3471
|
+
public var right: Any? { values["right"] }
|
|
3472
|
+
public var bottom: Any? { values["bottom"] }
|
|
3473
|
+
public var left: Any? { values["left"] }
|
|
3474
|
+
public var start: Any? { values["start"] }
|
|
3475
|
+
public var end: Any? { values["end"] }
|
|
3476
|
+
public var padding: Any? { values["padding"] }
|
|
3477
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
3478
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
3479
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
3480
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
3481
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
3482
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
3483
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
3484
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
3485
|
+
public var margin: Any? { values["margin"] }
|
|
3486
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
3487
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
3488
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
3489
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
3490
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
3491
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
3492
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
3493
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
3494
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
3495
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
3496
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
3497
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
3498
|
+
public var overflow: Any? { values["overflow"] }
|
|
3499
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
3500
|
+
public var color: String? { values["color"] as? String }
|
|
3501
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
3502
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
3503
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
3504
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
3505
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
3506
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
3507
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
3508
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
3509
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
3510
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
3511
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
3512
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
3513
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
3514
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
3515
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
3516
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
3517
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
3518
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
3519
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
3520
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
3521
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
3522
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
3523
|
+
public var text_align: Any? { values["text_align"] }
|
|
3524
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
3525
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
3526
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
3527
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
3528
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
3529
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
3530
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
3531
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
3532
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
3533
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
3534
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
3535
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
3536
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
3537
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
3538
|
+
public var transform: Any? { values["transform"] }
|
|
3539
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
3540
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
3541
|
+
public var gestures: Any? { values["gestures"] }
|
|
3542
|
+
public var hit_slop: Any? { values["hit_slop"] }
|
|
3543
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
3544
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
3545
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
3546
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
3547
|
+
public var accessible: Any? { values["accessible"] }
|
|
3548
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
3549
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
3550
|
+
public var test_id: Any? { values["test_id"] }
|
|
3551
|
+
public var ref: Any? { values["ref"] }
|
|
3552
|
+
}
|
|
3553
|
+
|
|
3554
|
+
public struct VirtualListProps {
|
|
3555
|
+
public let values: [String: Any]
|
|
3556
|
+
public init(_ values: [String: Any]) throws {
|
|
3557
|
+
self.values = values
|
|
3558
|
+
}
|
|
3559
|
+
public var width: Any? { values["width"] }
|
|
3560
|
+
public var height: Any? { values["height"] }
|
|
3561
|
+
public var min_width: Any? { values["min_width"] }
|
|
3562
|
+
public var max_width: Any? { values["max_width"] }
|
|
3563
|
+
public var min_height: Any? { values["min_height"] }
|
|
3564
|
+
public var max_height: Any? { values["max_height"] }
|
|
3565
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
3566
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
3567
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
3568
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
3569
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
3570
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
3571
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
3572
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
3573
|
+
public var align_items: Any? { values["align_items"] }
|
|
3574
|
+
public var align_self: Any? { values["align_self"] }
|
|
3575
|
+
public var align_content: Any? { values["align_content"] }
|
|
3576
|
+
public var direction: Any? { values["direction"] }
|
|
3577
|
+
public var display: Any? { values["display"] }
|
|
3578
|
+
public var position: Any? { values["position"] }
|
|
3579
|
+
public var top: Any? { values["top"] }
|
|
3580
|
+
public var right: Any? { values["right"] }
|
|
3581
|
+
public var bottom: Any? { values["bottom"] }
|
|
3582
|
+
public var left: Any? { values["left"] }
|
|
3583
|
+
public var start: Any? { values["start"] }
|
|
3584
|
+
public var end: Any? { values["end"] }
|
|
3585
|
+
public var padding: Any? { values["padding"] }
|
|
3586
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
3587
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
3588
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
3589
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
3590
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
3591
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
3592
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
3593
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
3594
|
+
public var margin: Any? { values["margin"] }
|
|
3595
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
3596
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
3597
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
3598
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
3599
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
3600
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
3601
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
3602
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
3603
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
3604
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
3605
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
3606
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
3607
|
+
public var overflow: Any? { values["overflow"] }
|
|
3608
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
3609
|
+
public var color: String? { values["color"] as? String }
|
|
3610
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
3611
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
3612
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
3613
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
3614
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
3615
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
3616
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
3617
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
3618
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
3619
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
3620
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
3621
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
3622
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
3623
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
3624
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
3625
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
3626
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
3627
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
3628
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
3629
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
3630
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
3631
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
3632
|
+
public var text_align: Any? { values["text_align"] }
|
|
3633
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
3634
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
3635
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
3636
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
3637
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
3638
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
3639
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
3640
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
3641
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
3642
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
3643
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
3644
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
3645
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
3646
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
3647
|
+
public var transform: Any? { values["transform"] }
|
|
3648
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
3649
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
3650
|
+
public var gestures: Any? { values["gestures"] }
|
|
3651
|
+
public var hit_slop: Any? { values["hit_slop"] }
|
|
3652
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
3653
|
+
public var accessibility_label: Any? { values["accessibility_label"] }
|
|
3654
|
+
public var accessibility_hint: Any? { values["accessibility_hint"] }
|
|
3655
|
+
public var accessibility_role: Any? { values["accessibility_role"] }
|
|
3656
|
+
public var accessible: Any? { values["accessible"] }
|
|
3657
|
+
public var accessibility_state: Any? { values["accessibility_state"] }
|
|
3658
|
+
public var accessibility_live_region: Any? { values["accessibility_live_region"] }
|
|
3659
|
+
public var test_id: Any? { values["test_id"] }
|
|
3660
|
+
public var ref: Any? { values["ref"] }
|
|
3661
|
+
public var keys: Any? { values["keys"] }
|
|
3662
|
+
public var revision: Int? { values["revision"] as? Int }
|
|
3663
|
+
public var count: Int? { values["count"] as? Int }
|
|
3664
|
+
public var estimated_item_size: Double? { values["estimated_item_size"] as? Double }
|
|
3665
|
+
public var on_bind_row: Any? { values["on_bind_row"] }
|
|
3666
|
+
}
|
|
3667
|
+
|
|
3668
|
+
public struct WebViewProps {
|
|
3669
|
+
public let values: [String: Any]
|
|
3670
|
+
public init(_ values: [String: Any]) throws {
|
|
3671
|
+
self.values = values
|
|
3672
|
+
}
|
|
3673
|
+
public var width: Any? { values["width"] }
|
|
3674
|
+
public var height: Any? { values["height"] }
|
|
3675
|
+
public var min_width: Any? { values["min_width"] }
|
|
3676
|
+
public var max_width: Any? { values["max_width"] }
|
|
3677
|
+
public var min_height: Any? { values["min_height"] }
|
|
3678
|
+
public var max_height: Any? { values["max_height"] }
|
|
3679
|
+
public var aspect_ratio: Double? { values["aspect_ratio"] as? Double }
|
|
3680
|
+
public var flex: Double? { values["flex"] as? Double }
|
|
3681
|
+
public var flex_grow: Double? { values["flex_grow"] as? Double }
|
|
3682
|
+
public var flex_shrink: Double? { values["flex_shrink"] as? Double }
|
|
3683
|
+
public var flex_basis: Any? { values["flex_basis"] }
|
|
3684
|
+
public var flex_direction: Any? { values["flex_direction"] }
|
|
3685
|
+
public var flex_wrap: Any? { values["flex_wrap"] }
|
|
3686
|
+
public var justify_content: Any? { values["justify_content"] }
|
|
3687
|
+
public var align_items: Any? { values["align_items"] }
|
|
3688
|
+
public var align_self: Any? { values["align_self"] }
|
|
3689
|
+
public var align_content: Any? { values["align_content"] }
|
|
3690
|
+
public var direction: Any? { values["direction"] }
|
|
3691
|
+
public var display: Any? { values["display"] }
|
|
3692
|
+
public var position: Any? { values["position"] }
|
|
3693
|
+
public var top: Any? { values["top"] }
|
|
3694
|
+
public var right: Any? { values["right"] }
|
|
3695
|
+
public var bottom: Any? { values["bottom"] }
|
|
3696
|
+
public var left: Any? { values["left"] }
|
|
3697
|
+
public var start: Any? { values["start"] }
|
|
3698
|
+
public var end: Any? { values["end"] }
|
|
3699
|
+
public var padding: Any? { values["padding"] }
|
|
3700
|
+
public var padding_top: Any? { values["padding_top"] }
|
|
3701
|
+
public var padding_bottom: Any? { values["padding_bottom"] }
|
|
3702
|
+
public var padding_left: Any? { values["padding_left"] }
|
|
3703
|
+
public var padding_right: Any? { values["padding_right"] }
|
|
3704
|
+
public var padding_start: Any? { values["padding_start"] }
|
|
3705
|
+
public var padding_end: Any? { values["padding_end"] }
|
|
3706
|
+
public var padding_horizontal: Any? { values["padding_horizontal"] }
|
|
3707
|
+
public var padding_vertical: Any? { values["padding_vertical"] }
|
|
3708
|
+
public var margin: Any? { values["margin"] }
|
|
3709
|
+
public var margin_top: Any? { values["margin_top"] }
|
|
3710
|
+
public var margin_bottom: Any? { values["margin_bottom"] }
|
|
3711
|
+
public var margin_left: Any? { values["margin_left"] }
|
|
3712
|
+
public var margin_right: Any? { values["margin_right"] }
|
|
3713
|
+
public var margin_start: Any? { values["margin_start"] }
|
|
3714
|
+
public var margin_end: Any? { values["margin_end"] }
|
|
3715
|
+
public var margin_horizontal: Any? { values["margin_horizontal"] }
|
|
3716
|
+
public var margin_vertical: Any? { values["margin_vertical"] }
|
|
3717
|
+
public var spacing: Double? { values["spacing"] as? Double }
|
|
3718
|
+
public var gap: Double? { values["gap"] as? Double }
|
|
3719
|
+
public var row_gap: Double? { values["row_gap"] as? Double }
|
|
3720
|
+
public var column_gap: Double? { values["column_gap"] as? Double }
|
|
3721
|
+
public var overflow: Any? { values["overflow"] }
|
|
3722
|
+
public var background_color: String? { values["background_color"] as? String }
|
|
3723
|
+
public var color: String? { values["color"] as? String }
|
|
3724
|
+
public var border_color: String? { values["border_color"] as? String }
|
|
3725
|
+
public var placeholder_color: String? { values["placeholder_color"] as? String }
|
|
3726
|
+
public var tint_color: String? { values["tint_color"] as? String }
|
|
3727
|
+
public var border_width: Double? { values["border_width"] as? Double }
|
|
3728
|
+
public var border_radius: Double? { values["border_radius"] as? Double }
|
|
3729
|
+
public var border_top_left_radius: Double? { values["border_top_left_radius"] as? Double }
|
|
3730
|
+
public var border_top_right_radius: Double? { values["border_top_right_radius"] as? Double }
|
|
3731
|
+
public var border_bottom_left_radius: Double? { values["border_bottom_left_radius"] as? Double }
|
|
3732
|
+
public var border_bottom_right_radius: Double? { values["border_bottom_right_radius"] as? Double }
|
|
3733
|
+
public var border_top_width: Double? { values["border_top_width"] as? Double }
|
|
3734
|
+
public var border_right_width: Double? { values["border_right_width"] as? Double }
|
|
3735
|
+
public var border_bottom_width: Double? { values["border_bottom_width"] as? Double }
|
|
3736
|
+
public var border_left_width: Double? { values["border_left_width"] as? Double }
|
|
3737
|
+
public var border_top_color: String? { values["border_top_color"] as? String }
|
|
3738
|
+
public var border_right_color: String? { values["border_right_color"] as? String }
|
|
3739
|
+
public var border_bottom_color: String? { values["border_bottom_color"] as? String }
|
|
3740
|
+
public var border_left_color: String? { values["border_left_color"] as? String }
|
|
3741
|
+
public var font_size: Double? { values["font_size"] as? Double }
|
|
3742
|
+
public var font_family: String? { values["font_family"] as? String }
|
|
3743
|
+
public var font_weight: Any? { values["font_weight"] }
|
|
3744
|
+
public var bold: Bool? { values["bold"] as? Bool }
|
|
3745
|
+
public var italic: Bool? { values["italic"] as? Bool }
|
|
3746
|
+
public var text_align: Any? { values["text_align"] }
|
|
3747
|
+
public var text_decoration: Any? { values["text_decoration"] }
|
|
3748
|
+
public var text_transform: Any? { values["text_transform"] }
|
|
3749
|
+
public var line_height: Double? { values["line_height"] as? Double }
|
|
3750
|
+
public var letter_spacing: Double? { values["letter_spacing"] as? Double }
|
|
3751
|
+
public var max_lines: Int? { values["max_lines"] as? Int }
|
|
3752
|
+
public var text_shadow_color: String? { values["text_shadow_color"] as? String }
|
|
3753
|
+
public var text_shadow_offset: Any? { values["text_shadow_offset"] }
|
|
3754
|
+
public var text_shadow_radius: Double? { values["text_shadow_radius"] as? Double }
|
|
3755
|
+
public var shadow_color: String? { values["shadow_color"] as? String }
|
|
3756
|
+
public var shadow_offset: Any? { values["shadow_offset"] }
|
|
3757
|
+
public var shadow_opacity: Double? { values["shadow_opacity"] as? Double }
|
|
3758
|
+
public var shadow_radius: Double? { values["shadow_radius"] as? Double }
|
|
3759
|
+
public var elevation: Double? { values["elevation"] as? Double }
|
|
3760
|
+
public var opacity: Double? { values["opacity"] as? Double }
|
|
3761
|
+
public var transform: Any? { values["transform"] }
|
|
3762
|
+
public var z_index: Int? { values["z_index"] as? Int }
|
|
3763
|
+
public var pointer_events: Any? { values["pointer_events"] }
|
|
3764
|
+
public var url: String? { values["url"] as? String }
|
|
3765
|
+
public var html: Any? { values["html"] }
|
|
3766
|
+
public var on_load: Any? { values["on_load"] }
|
|
3767
|
+
public var on_message: Any? { values["on_message"] }
|
|
3768
|
+
public var on_navigation_state_change: Any? { values["on_navigation_state_change"] }
|
|
3769
|
+
public var inject_javascript: Any? { values["inject_javascript"] }
|
|
3770
|
+
public var scroll_enabled: Bool? { values["scroll_enabled"] as? Bool }
|
|
3771
|
+
public var ref: Any? { values["ref"] }
|
|
3772
|
+
public var on_layout: Any? { values["on_layout"] }
|
|
3773
|
+
}
|
|
3774
|
+
|
|
3775
|
+
public enum NativeDecodeError: Error { case invalid(String) }
|