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.
Files changed (418) hide show
  1. pythonnative/__init__.py +411 -0
  2. pythonnative/_ios_log.py +92 -0
  3. pythonnative/_yoga.cp313-win_amd64.pyd +0 -0
  4. pythonnative/alerts.py +236 -0
  5. pythonnative/animated.py +1687 -0
  6. pythonnative/animation_graph.py +78 -0
  7. pythonnative/appearance.py +124 -0
  8. pythonnative/bootstrap.py +100 -0
  9. pythonnative/bridge/__init__.py +302 -0
  10. pythonnative/bridge/android.py +78 -0
  11. pythonnative/bridge/codec.py +170 -0
  12. pythonnative/bridge/commits.py +114 -0
  13. pythonnative/bridge/fake.py +243 -0
  14. pythonnative/bridge/ios.py +138 -0
  15. pythonnative/bridge/web.py +489 -0
  16. pythonnative/cli/__init__.py +7 -0
  17. pythonnative/cli/pn.py +1214 -0
  18. pythonnative/component.py +271 -0
  19. pythonnative/components/__init__.py +111 -0
  20. pythonnative/components/_base.py +166 -0
  21. pythonnative/components/controls.py +521 -0
  22. pythonnative/components/layout.py +518 -0
  23. pythonnative/components/lists.py +785 -0
  24. pythonnative/components/media.py +204 -0
  25. pythonnative/components/overlays.py +107 -0
  26. pythonnative/components/pressable.py +252 -0
  27. pythonnative/components/structural.py +167 -0
  28. pythonnative/components/text.py +291 -0
  29. pythonnative/devclient.py +824 -0
  30. pythonnative/devserver/__init__.py +34 -0
  31. pythonnative/devserver/server.py +718 -0
  32. pythonnative/devserver/static/animation_graph.js +82 -0
  33. pythonnative/devserver/static/bridge.js +147 -0
  34. pythonnative/devserver/static/colors.js +70 -0
  35. pythonnative/devserver/static/host.js +552 -0
  36. pythonnative/devserver/static/index.html +60 -0
  37. pythonnative/devserver/static/layout.js +85 -0
  38. pythonnative/devserver/static/preview.css +415 -0
  39. pythonnative/devserver/static/renderer.js +1994 -0
  40. pythonnative/devserver/static/shell.js +345 -0
  41. pythonnative/devserver/static/yoga/LICENSE +21 -0
  42. pythonnative/devserver/static/yoga/binaries/yoga-wasm-base64-esm.js +75 -0
  43. pythonnative/devserver/static/yoga/src/generated/YGEnums.d.ts +189 -0
  44. pythonnative/devserver/static/yoga/src/generated/YGEnums.js +211 -0
  45. pythonnative/devserver/static/yoga/src/generated/YGEnums.js.map +1 -0
  46. pythonnative/devserver/static/yoga/src/index.d.ts +12 -0
  47. pythonnative/devserver/static/yoga/src/index.js +16 -0
  48. pythonnative/devserver/static/yoga/src/index.js.map +1 -0
  49. pythonnative/devserver/static/yoga/src/load.d.ts +11 -0
  50. pythonnative/devserver/static/yoga/src/load.js +17 -0
  51. pythonnative/devserver/static/yoga/src/load.js.map +1 -0
  52. pythonnative/devserver/static/yoga/src/wrapAssembly.d.ts +155 -0
  53. pythonnative/devserver/static/yoga/src/wrapAssembly.js +125 -0
  54. pythonnative/devserver/static/yoga/src/wrapAssembly.js.map +1 -0
  55. pythonnative/devserver/watcher.py +267 -0
  56. pythonnative/devserver/ws.py +421 -0
  57. pythonnative/diagnostics.py +241 -0
  58. pythonnative/element.py +159 -0
  59. pythonnative/equality.py +19 -0
  60. pythonnative/events.py +231 -0
  61. pythonnative/gestures.py +1333 -0
  62. pythonnative/hooks.py +1621 -0
  63. pythonnative/hosts/__init__.py +63 -0
  64. pythonnative/hosts/base.py +596 -0
  65. pythonnative/hosts/native.py +302 -0
  66. pythonnative/hot_reload.py +585 -0
  67. pythonnative/layout.py +328 -0
  68. pythonnative/mutations.py +142 -0
  69. pythonnative/native/android/build.gradle +52 -0
  70. pythonnative/native/android/gradle.properties +3 -0
  71. pythonnative/native/android/settings.gradle +12 -0
  72. pythonnative/native/android/src/main/AndroidManifest.xml +11 -0
  73. pythonnative/native/android/src/main/cpp/CMakeLists.txt +9 -0
  74. pythonnative/native/android/src/main/cpp/yoga_jni.cpp +52 -0
  75. pythonnative/native/android/src/main/java/com/pythonnative/generated/NativeModules.kt +5 -0
  76. pythonnative/native/android/src/main/java/com/pythonnative/generated/NativeProps.kt +3705 -0
  77. pythonnative/native/android/src/main/java/com/pythonnative/generated/PNContracts.kt +129 -0
  78. pythonnative/native/android/src/main/java/com/pythonnative/runtime/PNBridge.kt +261 -0
  79. pythonnative/native/android/src/main/java/com/pythonnative/runtime/PythonHost.kt +20 -0
  80. pythonnative/native/android/src/main/java/com/pythonnative/runtime/animation/AnimationGraph.kt +108 -0
  81. pythonnative/native/android/src/main/java/com/pythonnative/runtime/animation/AnimationSpecs.kt +141 -0
  82. pythonnative/native/android/src/main/java/com/pythonnative/runtime/animation/PNAnimator.kt +257 -0
  83. pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/CommitState.kt +106 -0
  84. pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/JsonUtil.kt +175 -0
  85. pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/MainThread.kt +40 -0
  86. pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/PNLog.kt +33 -0
  87. pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/PNRegistry.kt +82 -0
  88. pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/PNTransaction.kt +80 -0
  89. pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/TransactionApplier.kt +117 -0
  90. pythonnative/native/android/src/main/java/com/pythonnative/runtime/bridge/ViewRegistry.kt +74 -0
  91. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/BuiltinComponents.kt +37 -0
  92. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ButtonManager.kt +32 -0
  93. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ComponentManager.kt +213 -0
  94. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ContainerManagers.kt +69 -0
  95. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ControlManagers.kt +186 -0
  96. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/DatePickerManager.kt +123 -0
  97. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ImageLoader.kt +141 -0
  98. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ImageManager.kt +162 -0
  99. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ModalManager.kt +134 -0
  100. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/PNColor.kt +201 -0
  101. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/PickerManager.kt +86 -0
  102. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/PortalManager.kt +55 -0
  103. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/PressableManager.kt +122 -0
  104. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ScreenStackManager.kt +110 -0
  105. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ScrollViewManager.kt +214 -0
  106. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/SegmentedControlManager.kt +113 -0
  107. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/StatusBarManager.kt +52 -0
  108. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/TabBarManager.kt +131 -0
  109. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/TextInputManager.kt +250 -0
  110. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/TextManager.kt +233 -0
  111. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/ViewStyler.kt +355 -0
  112. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/VirtualListManager.kt +159 -0
  113. pythonnative/native/android/src/main/java/com/pythonnative/runtime/components/WebViewManager.kt +149 -0
  114. pythonnative/native/android/src/main/java/com/pythonnative/runtime/gestures/GestureArbiter.kt +233 -0
  115. pythonnative/native/android/src/main/java/com/pythonnative/runtime/gestures/GestureCoordinator.kt +127 -0
  116. pythonnative/native/android/src/main/java/com/pythonnative/runtime/gestures/GestureRecognizers.kt +527 -0
  117. pythonnative/native/android/src/main/java/com/pythonnative/runtime/layout/NativeLayout.kt +145 -0
  118. pythonnative/native/android/src/main/java/com/pythonnative/runtime/layout/YogaNode.kt +29 -0
  119. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/BuiltinModules.kt +73 -0
  120. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/DeviceModules.kt +316 -0
  121. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/HostModule.kt +61 -0
  122. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/MediaModules.kt +200 -0
  123. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/NativeModule.kt +158 -0
  124. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/NotificationsModule.kt +100 -0
  125. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/PermissionsModule.kt +99 -0
  126. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/StorageModules.kt +89 -0
  127. pythonnative/native/android/src/main/java/com/pythonnative/runtime/modules/SystemModules.kt +178 -0
  128. pythonnative/native/android/src/main/java/com/pythonnative/runtime/plugins/GeneratedPlugins.kt +16 -0
  129. pythonnative/native/android/src/main/java/com/pythonnative/runtime/screens/PNScreenFragment.kt +188 -0
  130. pythonnative/native/android/src/main/java/com/pythonnative/runtime/screens/ScreenRegistry.kt +80 -0
  131. pythonnative/native/android/src/main/java/com/pythonnative/runtime/views/PNAccessibilityDelegate.kt +48 -0
  132. pythonnative/native/android/src/main/java/com/pythonnative/runtime/views/PNBorderDrawable.kt +76 -0
  133. pythonnative/native/android/src/main/java/com/pythonnative/runtime/views/PNEditText.kt +18 -0
  134. pythonnative/native/android/src/main/java/com/pythonnative/runtime/views/PNFrameLayout.kt +49 -0
  135. pythonnative/native/android/src/test/java/com/pythonnative/runtime/AnimationSpecsTest.kt +75 -0
  136. pythonnative/native/android/src/test/java/com/pythonnative/runtime/GestureArbiterTest.kt +197 -0
  137. pythonnative/native/android/src/test/java/com/pythonnative/runtime/PNColorTest.kt +47 -0
  138. pythonnative/native/android/src/test/java/com/pythonnative/runtime/PNTransactionTest.kt +78 -0
  139. pythonnative/native/android/src/test/java/com/pythonnative/runtime/PromiseTest.kt +89 -0
  140. pythonnative/native/ios/Package.swift +23 -0
  141. pythonnative/native/ios/Sources/PythonNativeKit/Animation/PNAnimationGraph.swift +199 -0
  142. pythonnative/native/ios/Sources/PythonNativeKit/Animation/PNAnimator.swift +312 -0
  143. pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNBridge.swift +255 -0
  144. pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNCommit.swift +104 -0
  145. pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNRegistry.swift +142 -0
  146. pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNTransaction.swift +166 -0
  147. pythonnative/native/ios/Sources/PythonNativeKit/Bridge/PNViewRegistry.swift +53 -0
  148. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNButtonManagers.swift +207 -0
  149. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNColor.swift +173 -0
  150. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNComponentManager.swift +183 -0
  151. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNContainerView.swift +56 -0
  152. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNControlManagers.swift +281 -0
  153. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNImageManager.swift +222 -0
  154. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNOverlayManagers.swift +243 -0
  155. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNPressableManager.swift +114 -0
  156. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNScreenStackManager.swift +107 -0
  157. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNScrollViewManager.swift +197 -0
  158. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNTabBarManager.swift +106 -0
  159. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNTextInputManager.swift +297 -0
  160. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNTextManager.swift +230 -0
  161. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNTransform.swift +82 -0
  162. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNViewManager.swift +86 -0
  163. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNViewState.swift +87 -0
  164. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNViewStyler.swift +340 -0
  165. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNVirtualListManager.swift +155 -0
  166. pythonnative/native/ios/Sources/PythonNativeKit/Components/PNWebViewManager.swift +124 -0
  167. pythonnative/native/ios/Sources/PythonNativeKit/Generated/NativeModules.swift +1 -0
  168. pythonnative/native/ios/Sources/PythonNativeKit/Generated/NativeProps.swift +3775 -0
  169. pythonnative/native/ios/Sources/PythonNativeKit/Generated/PNContracts.swift +46 -0
  170. pythonnative/native/ios/Sources/PythonNativeKit/Gestures/PNGestureCoordinator.swift +260 -0
  171. pythonnative/native/ios/Sources/PythonNativeKit/Layout/PNLayout.swift +173 -0
  172. pythonnative/native/ios/Sources/PythonNativeKit/Modules/AlertModule.swift +92 -0
  173. pythonnative/native/ios/Sources/PythonNativeKit/Modules/HostModule.swift +80 -0
  174. pythonnative/native/ios/Sources/PythonNativeKit/Modules/LifecycleModules.swift +174 -0
  175. pythonnative/native/ios/Sources/PythonNativeKit/Modules/MediaModules.swift +177 -0
  176. pythonnative/native/ios/Sources/PythonNativeKit/Modules/PNNativeModule.swift +168 -0
  177. pythonnative/native/ios/Sources/PythonNativeKit/Modules/PermissionModules.swift +266 -0
  178. pythonnative/native/ios/Sources/PythonNativeKit/Modules/SystemModules.swift +251 -0
  179. pythonnative/native/ios/Sources/PythonNativeKit/Plugins/PNPluginRegistration.swift +8 -0
  180. pythonnative/native/ios/Sources/PythonNativeKit/Screens/PNScreenRegistry.swift +46 -0
  181. pythonnative/native/ios/Sources/PythonNativeKit/Screens/PNViewController.swift +237 -0
  182. pythonnative/native/ios/Sources/PythonNativeKit/Support/PNCompat.swift +46 -0
  183. pythonnative/native/ios/Sources/PythonNativeKit/Support/PNJSON.swift +173 -0
  184. pythonnative/native/ios/Sources/PythonNativeKit/Support/PNLog.swift +47 -0
  185. pythonnative/native/ios/Sources/PythonNativeKit/Support/PNWindow.swift +51 -0
  186. pythonnative/native/ios/Tests/PythonNativeKitTests/PNAnimationGraphTests.swift +26 -0
  187. pythonnative/native/ios/Tests/PythonNativeKitTests/PNColorTests.swift +50 -0
  188. pythonnative/native/ios/Tests/PythonNativeKitTests/PNCommitTests.swift +86 -0
  189. pythonnative/native/ios/Tests/PythonNativeKitTests/PNGestureTests.swift +101 -0
  190. pythonnative/native/ios/Tests/PythonNativeKitTests/PNManagerTests.swift +126 -0
  191. pythonnative/native/ios/Tests/PythonNativeKitTests/PNModuleTests.swift +111 -0
  192. pythonnative/native/ios/Tests/PythonNativeKitTests/PNTransactionTests.swift +91 -0
  193. pythonnative/native/yoga/LICENSE +21 -0
  194. pythonnative/native/yoga/Package.swift +9 -0
  195. pythonnative/native/yoga/VENDORED.md +2 -0
  196. pythonnative/native/yoga/include/PNStyle.h +10 -0
  197. pythonnative/native/yoga/include/module.modulemap +5 -0
  198. pythonnative/native/yoga/include/yoga/YGConfig.h +158 -0
  199. pythonnative/native/yoga/include/yoga/YGEnums.h +142 -0
  200. pythonnative/native/yoga/include/yoga/YGMacros.h +99 -0
  201. pythonnative/native/yoga/include/yoga/YGNode.h +304 -0
  202. pythonnative/native/yoga/include/yoga/YGNodeLayout.h +35 -0
  203. pythonnative/native/yoga/include/yoga/YGNodeStyle.h +130 -0
  204. pythonnative/native/yoga/include/yoga/YGPixelGrid.h +29 -0
  205. pythonnative/native/yoga/include/yoga/YGValue.h +84 -0
  206. pythonnative/native/yoga/include/yoga/Yoga.h +21 -0
  207. pythonnative/native/yoga/python.cpp +16 -0
  208. pythonnative/native/yoga/style.cpp +272 -0
  209. pythonnative/native/yoga/yoga/CMakeLists.txt +41 -0
  210. pythonnative/native/yoga/yoga/YGConfig.cpp +92 -0
  211. pythonnative/native/yoga/yoga/YGConfig.h +158 -0
  212. pythonnative/native/yoga/yoga/YGEnums.cpp +262 -0
  213. pythonnative/native/yoga/yoga/YGEnums.h +142 -0
  214. pythonnative/native/yoga/yoga/YGMacros.h +99 -0
  215. pythonnative/native/yoga/yoga/YGNode.cpp +366 -0
  216. pythonnative/native/yoga/yoga/YGNode.h +304 -0
  217. pythonnative/native/yoga/yoga/YGNodeLayout.cpp +92 -0
  218. pythonnative/native/yoga/yoga/YGNodeLayout.h +35 -0
  219. pythonnative/native/yoga/yoga/YGNodeStyle.cpp +405 -0
  220. pythonnative/native/yoga/yoga/YGNodeStyle.h +130 -0
  221. pythonnative/native/yoga/yoga/YGPixelGrid.cpp +22 -0
  222. pythonnative/native/yoga/yoga/YGPixelGrid.h +29 -0
  223. pythonnative/native/yoga/yoga/YGValue.cpp +20 -0
  224. pythonnative/native/yoga/yoga/YGValue.h +84 -0
  225. pythonnative/native/yoga/yoga/Yoga.h +21 -0
  226. pythonnative/native/yoga/yoga/algorithm/AbsoluteLayout.cpp +563 -0
  227. pythonnative/native/yoga/yoga/algorithm/AbsoluteLayout.h +41 -0
  228. pythonnative/native/yoga/yoga/algorithm/Align.h +72 -0
  229. pythonnative/native/yoga/yoga/algorithm/Baseline.cpp +78 -0
  230. pythonnative/native/yoga/yoga/algorithm/Baseline.h +21 -0
  231. pythonnative/native/yoga/yoga/algorithm/BoundAxis.h +79 -0
  232. pythonnative/native/yoga/yoga/algorithm/Cache.cpp +121 -0
  233. pythonnative/native/yoga/yoga/algorithm/Cache.h +30 -0
  234. pythonnative/native/yoga/yoga/algorithm/CalculateLayout.cpp +2428 -0
  235. pythonnative/native/yoga/yoga/algorithm/CalculateLayout.h +38 -0
  236. pythonnative/native/yoga/yoga/algorithm/FlexDirection.h +120 -0
  237. pythonnative/native/yoga/yoga/algorithm/FlexLine.cpp +124 -0
  238. pythonnative/native/yoga/yoga/algorithm/FlexLine.h +75 -0
  239. pythonnative/native/yoga/yoga/algorithm/PixelGrid.cpp +132 -0
  240. pythonnative/native/yoga/yoga/algorithm/PixelGrid.h +29 -0
  241. pythonnative/native/yoga/yoga/algorithm/SizingMode.h +73 -0
  242. pythonnative/native/yoga/yoga/algorithm/TrailingPosition.h +44 -0
  243. pythonnative/native/yoga/yoga/config/Config.cpp +135 -0
  244. pythonnative/native/yoga/yoga/config/Config.h +92 -0
  245. pythonnative/native/yoga/yoga/debug/AssertFatal.cpp +53 -0
  246. pythonnative/native/yoga/yoga/debug/AssertFatal.h +29 -0
  247. pythonnative/native/yoga/yoga/debug/Log.cpp +107 -0
  248. pythonnative/native/yoga/yoga/debug/Log.h +34 -0
  249. pythonnative/native/yoga/yoga/enums/Align.h +47 -0
  250. pythonnative/native/yoga/yoga/enums/BoxSizing.h +40 -0
  251. pythonnative/native/yoga/yoga/enums/Dimension.h +40 -0
  252. pythonnative/native/yoga/yoga/enums/Direction.h +41 -0
  253. pythonnative/native/yoga/yoga/enums/Display.h +41 -0
  254. pythonnative/native/yoga/yoga/enums/Edge.h +47 -0
  255. pythonnative/native/yoga/yoga/enums/Errata.h +41 -0
  256. pythonnative/native/yoga/yoga/enums/ExperimentalFeature.h +39 -0
  257. pythonnative/native/yoga/yoga/enums/FlexDirection.h +42 -0
  258. pythonnative/native/yoga/yoga/enums/Gutter.h +41 -0
  259. pythonnative/native/yoga/yoga/enums/Justify.h +44 -0
  260. pythonnative/native/yoga/yoga/enums/LogLevel.h +44 -0
  261. pythonnative/native/yoga/yoga/enums/MeasureMode.h +41 -0
  262. pythonnative/native/yoga/yoga/enums/NodeType.h +40 -0
  263. pythonnative/native/yoga/yoga/enums/Overflow.h +41 -0
  264. pythonnative/native/yoga/yoga/enums/PhysicalEdge.h +21 -0
  265. pythonnative/native/yoga/yoga/enums/PositionType.h +41 -0
  266. pythonnative/native/yoga/yoga/enums/Unit.h +42 -0
  267. pythonnative/native/yoga/yoga/enums/Wrap.h +41 -0
  268. pythonnative/native/yoga/yoga/enums/YogaEnums.h +85 -0
  269. pythonnative/native/yoga/yoga/event/event.cpp +87 -0
  270. pythonnative/native/yoga/yoga/event/event.h +130 -0
  271. pythonnative/native/yoga/yoga/module.modulemap +21 -0
  272. pythonnative/native/yoga/yoga/node/CachedMeasurement.h +53 -0
  273. pythonnative/native/yoga/yoga/node/LayoutResults.cpp +48 -0
  274. pythonnative/native/yoga/yoga/node/LayoutResults.h +122 -0
  275. pythonnative/native/yoga/yoga/node/LayoutableChildren.h +148 -0
  276. pythonnative/native/yoga/yoga/node/Node.cpp +443 -0
  277. pythonnative/native/yoga/yoga/node/Node.h +337 -0
  278. pythonnative/native/yoga/yoga/numeric/Comparison.h +81 -0
  279. pythonnative/native/yoga/yoga/numeric/FloatOptional.h +93 -0
  280. pythonnative/native/yoga/yoga/style/SmallValueBuffer.h +133 -0
  281. pythonnative/native/yoga/yoga/style/Style.h +757 -0
  282. pythonnative/native/yoga/yoga/style/StyleLength.h +107 -0
  283. pythonnative/native/yoga/yoga/style/StyleValueHandle.h +98 -0
  284. pythonnative/native/yoga/yoga/style/StyleValuePool.h +127 -0
  285. pythonnative/native_modules/__init__.py +124 -0
  286. pythonnative/native_modules/app_state.py +99 -0
  287. pythonnative/native_modules/battery.py +75 -0
  288. pythonnative/native_modules/biometrics.py +42 -0
  289. pythonnative/native_modules/camera.py +65 -0
  290. pythonnative/native_modules/clipboard.py +46 -0
  291. pythonnative/native_modules/fallback.py +324 -0
  292. pythonnative/native_modules/file_system.py +145 -0
  293. pythonnative/native_modules/haptics.py +75 -0
  294. pythonnative/native_modules/linking.py +123 -0
  295. pythonnative/native_modules/location.py +75 -0
  296. pythonnative/native_modules/net_info.py +112 -0
  297. pythonnative/native_modules/notifications.py +129 -0
  298. pythonnative/native_modules/permissions.py +108 -0
  299. pythonnative/native_modules/registry.py +526 -0
  300. pythonnative/native_modules/secure_store.py +52 -0
  301. pythonnative/native_modules/share.py +51 -0
  302. pythonnative/native_views/__init__.py +375 -0
  303. pythonnative/native_views/base.py +316 -0
  304. pythonnative/native_views/bridge_backend.py +277 -0
  305. pythonnative/navigation/__init__.py +103 -0
  306. pythonnative/navigation/container.py +154 -0
  307. pythonnative/navigation/handle.py +540 -0
  308. pythonnative/navigation/hooks.py +133 -0
  309. pythonnative/navigation/host.py +58 -0
  310. pythonnative/navigation/linking.py +200 -0
  311. pythonnative/navigation/navigators.py +659 -0
  312. pythonnative/navigation/screen.py +149 -0
  313. pythonnative/navigation/state.py +269 -0
  314. pythonnative/net.py +248 -0
  315. pythonnative/platform.py +166 -0
  316. pythonnative/platform_metrics.py +252 -0
  317. pythonnative/preview.py +287 -0
  318. pythonnative/profiling.py +101 -0
  319. pythonnative/project/__init__.py +68 -0
  320. pythonnative/project/android.py +557 -0
  321. pythonnative/project/builder.py +817 -0
  322. pythonnative/project/config.py +773 -0
  323. pythonnative/project/deps.py +719 -0
  324. pythonnative/project/devices.py +304 -0
  325. pythonnative/project/doctor.py +283 -0
  326. pythonnative/project/fingerprint.py +171 -0
  327. pythonnative/project/icons.py +247 -0
  328. pythonnative/project/ios.py +325 -0
  329. pythonnative/project/lockfile.py +100 -0
  330. pythonnative/project/permissions.py +361 -0
  331. pythonnative/project/plugins.py +519 -0
  332. pythonnative/project/runtime_assets.py +183 -0
  333. pythonnative/py.typed +0 -0
  334. pythonnative/query.py +153 -0
  335. pythonnative/reconciler/__init__.py +29 -0
  336. pythonnative/reconciler/boundaries.py +375 -0
  337. pythonnative/reconciler/children.py +88 -0
  338. pythonnative/reconciler/core.py +1165 -0
  339. pythonnative/reconciler/layout_pass.py +393 -0
  340. pythonnative/reconciler/vnode.py +266 -0
  341. pythonnative/refresh.py +55 -0
  342. pythonnative/runtime.py +306 -0
  343. pythonnative/scheduler.py +159 -0
  344. pythonnative/sdk/__init__.py +153 -0
  345. pythonnative/sdk/_components.py +427 -0
  346. pythonnative/sdk/builtins.py +91 -0
  347. pythonnative/sdk/codegen.py +149 -0
  348. pythonnative/sdk/module_codegen.py +184 -0
  349. pythonnative/sdk/schema.py +224 -0
  350. pythonnative/sdk/templates/contracts.kt +46 -0
  351. pythonnative/sdk/templates/contracts.swift +46 -0
  352. pythonnative/storage.py +184 -0
  353. pythonnative/style.py +841 -0
  354. pythonnative/suspense.py +183 -0
  355. pythonnative/templates/android_template/app/build.gradle +75 -0
  356. pythonnative/templates/android_template/app/proguard-rules.pro +21 -0
  357. pythonnative/templates/android_template/app/src/androidTest/java/com/pythonnative/android_template/ExampleInstrumentedTest.kt +24 -0
  358. pythonnative/templates/android_template/app/src/debug/AndroidManifest.xml +7 -0
  359. pythonnative/templates/android_template/app/src/main/AndroidManifest.xml +32 -0
  360. pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/MainActivity.kt +130 -0
  361. pythonnative/templates/android_template/app/src/main/java/com/pythonnative/android_template/ScreenFragment.kt +13 -0
  362. pythonnative/templates/android_template/app/src/main/res/drawable/ic_launcher_background.xml +170 -0
  363. pythonnative/templates/android_template/app/src/main/res/drawable-v24/ic_launcher_foreground.xml +30 -0
  364. pythonnative/templates/android_template/app/src/main/res/layout/activity_main.xml +10 -0
  365. pythonnative/templates/android_template/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml +6 -0
  366. pythonnative/templates/android_template/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml +6 -0
  367. pythonnative/templates/android_template/app/src/main/res/mipmap-hdpi/ic_launcher.webp +0 -0
  368. pythonnative/templates/android_template/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp +0 -0
  369. pythonnative/templates/android_template/app/src/main/res/mipmap-mdpi/ic_launcher.webp +0 -0
  370. pythonnative/templates/android_template/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp +0 -0
  371. pythonnative/templates/android_template/app/src/main/res/mipmap-xhdpi/ic_launcher.webp +0 -0
  372. pythonnative/templates/android_template/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp +0 -0
  373. pythonnative/templates/android_template/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp +0 -0
  374. pythonnative/templates/android_template/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp +0 -0
  375. pythonnative/templates/android_template/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp +0 -0
  376. pythonnative/templates/android_template/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp +0 -0
  377. pythonnative/templates/android_template/app/src/main/res/navigation/nav_graph.xml +22 -0
  378. pythonnative/templates/android_template/app/src/main/res/values/colors.xml +5 -0
  379. pythonnative/templates/android_template/app/src/main/res/values/strings.xml +5 -0
  380. pythonnative/templates/android_template/app/src/main/res/values/themes.xml +9 -0
  381. pythonnative/templates/android_template/app/src/main/res/values-night/themes.xml +7 -0
  382. pythonnative/templates/android_template/app/src/main/res/xml/backup_rules.xml +13 -0
  383. pythonnative/templates/android_template/app/src/main/res/xml/data_extraction_rules.xml +19 -0
  384. pythonnative/templates/android_template/app/src/test/java/com/pythonnative/android_template/ExampleUnitTest.kt +17 -0
  385. pythonnative/templates/android_template/build.gradle +10 -0
  386. pythonnative/templates/android_template/gradle/wrapper/gradle-wrapper.jar +0 -0
  387. pythonnative/templates/android_template/gradle/wrapper/gradle-wrapper.properties +6 -0
  388. pythonnative/templates/android_template/gradle.properties +23 -0
  389. pythonnative/templates/android_template/gradlew +185 -0
  390. pythonnative/templates/android_template/gradlew.bat +89 -0
  391. pythonnative/templates/android_template/settings.gradle +17 -0
  392. pythonnative/templates/ios_template/ios_template/AppDelegate.swift +51 -0
  393. pythonnative/templates/ios_template/ios_template/Assets.xcassets/AccentColor.colorset/Contents.json +11 -0
  394. pythonnative/templates/ios_template/ios_template/Assets.xcassets/AppIcon.appiconset/Contents.json +13 -0
  395. pythonnative/templates/ios_template/ios_template/Assets.xcassets/Contents.json +6 -0
  396. pythonnative/templates/ios_template/ios_template/Base.lproj/LaunchScreen.storyboard +25 -0
  397. pythonnative/templates/ios_template/ios_template/BridgingHeader.h +14 -0
  398. pythonnative/templates/ios_template/ios_template/Info.plist +28 -0
  399. pythonnative/templates/ios_template/ios_template/PythonRuntime.swift +390 -0
  400. pythonnative/templates/ios_template/ios_template/SceneDelegate.swift +61 -0
  401. pythonnative/templates/ios_template/ios_template/ViewController.swift +23 -0
  402. pythonnative/templates/ios_template/ios_template.xcodeproj/project.pbxproj +745 -0
  403. pythonnative/templates/ios_template/ios_template.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist +8 -0
  404. pythonnative/templates/ios_template/ios_templateTests/ios_templateTests.swift +36 -0
  405. pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITests.swift +41 -0
  406. pythonnative/templates/ios_template/ios_templateUITests/ios_templateUITestsLaunchTests.swift +32 -0
  407. pythonnative/testing/__init__.py +53 -0
  408. pythonnative/testing/backend.py +276 -0
  409. pythonnative/testing/harness.py +369 -0
  410. pythonnative/utils.py +145 -0
  411. pythonnative-0.40.0.dist-info/DELVEWHEEL +2 -0
  412. pythonnative-0.40.0.dist-info/METADATA +150 -0
  413. pythonnative-0.40.0.dist-info/RECORD +418 -0
  414. pythonnative-0.40.0.dist-info/WHEEL +5 -0
  415. pythonnative-0.40.0.dist-info/entry_points.txt +2 -0
  416. pythonnative-0.40.0.dist-info/licenses/LICENSE +21 -0
  417. pythonnative-0.40.0.dist-info/top_level.txt +1 -0
  418. pythonnative.libs/msvcp140-a4c2229bdc2a2a630acdc095b4d86008.dll +0 -0
@@ -0,0 +1,3705 @@
1
+ package com.pythonnative.generated
2
+
3
+ import org.json.JSONObject
4
+
5
+ // Generated from Python schemas.
6
+ data class ActivityIndicatorProps(val values: JSONObject) {
7
+ init {
8
+ }
9
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
10
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
11
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
12
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
13
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
14
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
15
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
16
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
17
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
18
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
19
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
20
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
21
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
22
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
23
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
24
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
25
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
26
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
27
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
28
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
29
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
30
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
31
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
32
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
33
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
34
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
35
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
36
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
37
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
38
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
39
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
40
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
41
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
42
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
43
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
44
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
45
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
46
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
47
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
48
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
49
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
50
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
51
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
52
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
53
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
54
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
55
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
56
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
57
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
58
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
59
+ val color: Any? get() = if (values.isNull("color")) null else values.get("color")
60
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
61
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
62
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
63
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
64
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
65
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
66
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
67
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
68
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
69
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
70
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
71
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
72
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
73
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
74
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
75
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
76
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
77
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
78
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
79
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
80
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
81
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
82
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
83
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
84
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
85
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
86
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
87
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
88
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
89
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
90
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
91
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
92
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
93
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
94
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
95
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
96
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
97
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
98
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
99
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
100
+ val animating: Boolean? get() = if (values.isNull("animating")) null else values.getBoolean("animating")
101
+ val size: Any? get() = if (values.isNull("size")) null else values.get("size")
102
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
103
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
104
+ }
105
+
106
+ data class ButtonProps(val values: JSONObject) {
107
+ init {
108
+ }
109
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
110
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
111
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
112
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
113
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
114
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
115
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
116
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
117
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
118
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
119
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
120
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
121
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
122
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
123
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
124
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
125
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
126
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
127
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
128
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
129
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
130
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
131
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
132
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
133
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
134
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
135
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
136
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
137
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
138
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
139
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
140
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
141
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
142
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
143
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
144
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
145
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
146
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
147
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
148
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
149
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
150
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
151
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
152
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
153
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
154
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
155
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
156
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
157
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
158
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
159
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
160
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
161
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
162
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
163
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
164
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
165
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
166
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
167
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
168
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
169
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
170
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
171
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
172
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
173
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
174
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
175
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
176
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
177
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
178
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
179
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
180
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
181
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
182
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
183
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
184
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
185
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
186
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
187
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
188
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
189
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
190
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
191
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
192
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
193
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
194
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
195
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
196
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
197
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
198
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
199
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
200
+ val title: String? get() = if (values.isNull("title")) null else values.getString("title")
201
+ val on_press: Any? get() = if (values.isNull("on_press")) null else values.get("on_press")
202
+ val disabled: Boolean? get() = if (values.isNull("disabled")) null else values.getBoolean("disabled")
203
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
204
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
205
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
206
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
207
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
208
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
209
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
210
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
211
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
212
+ }
213
+
214
+ data class CheckboxProps(val values: JSONObject) {
215
+ init {
216
+ }
217
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
218
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
219
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
220
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
221
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
222
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
223
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
224
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
225
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
226
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
227
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
228
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
229
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
230
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
231
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
232
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
233
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
234
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
235
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
236
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
237
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
238
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
239
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
240
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
241
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
242
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
243
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
244
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
245
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
246
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
247
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
248
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
249
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
250
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
251
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
252
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
253
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
254
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
255
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
256
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
257
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
258
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
259
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
260
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
261
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
262
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
263
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
264
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
265
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
266
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
267
+ val color: Any? get() = if (values.isNull("color")) null else values.get("color")
268
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
269
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
270
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
271
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
272
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
273
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
274
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
275
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
276
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
277
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
278
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
279
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
280
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
281
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
282
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
283
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
284
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
285
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
286
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
287
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
288
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
289
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
290
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
291
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
292
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
293
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
294
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
295
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
296
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
297
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
298
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
299
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
300
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
301
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
302
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
303
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
304
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
305
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
306
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
307
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
308
+ val value: Boolean? get() = if (values.isNull("value")) null else values.getBoolean("value")
309
+ val on_change: Any? get() = if (values.isNull("on_change")) null else values.get("on_change")
310
+ val label: Any? get() = if (values.isNull("label")) null else values.get("label")
311
+ val disabled: Boolean? get() = if (values.isNull("disabled")) null else values.getBoolean("disabled")
312
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
313
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
314
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
315
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
316
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
317
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
318
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
319
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
320
+ }
321
+
322
+ data class ColumnProps(val values: JSONObject) {
323
+ init {
324
+ }
325
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
326
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
327
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
328
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
329
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
330
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
331
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
332
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
333
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
334
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
335
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
336
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
337
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
338
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
339
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
340
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
341
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
342
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
343
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
344
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
345
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
346
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
347
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
348
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
349
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
350
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
351
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
352
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
353
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
354
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
355
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
356
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
357
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
358
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
359
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
360
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
361
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
362
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
363
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
364
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
365
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
366
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
367
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
368
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
369
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
370
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
371
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
372
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
373
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
374
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
375
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
376
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
377
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
378
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
379
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
380
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
381
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
382
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
383
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
384
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
385
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
386
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
387
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
388
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
389
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
390
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
391
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
392
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
393
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
394
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
395
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
396
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
397
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
398
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
399
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
400
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
401
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
402
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
403
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
404
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
405
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
406
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
407
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
408
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
409
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
410
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
411
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
412
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
413
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
414
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
415
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
416
+ val gestures: Any? get() = if (values.isNull("gestures")) null else values.get("gestures")
417
+ val hit_slop: Any? get() = if (values.isNull("hit_slop")) null else values.get("hit_slop")
418
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
419
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
420
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
421
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
422
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
423
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
424
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
425
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
426
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
427
+ }
428
+
429
+ data class DatePickerProps(val values: JSONObject) {
430
+ init {
431
+ }
432
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
433
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
434
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
435
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
436
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
437
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
438
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
439
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
440
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
441
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
442
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
443
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
444
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
445
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
446
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
447
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
448
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
449
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
450
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
451
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
452
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
453
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
454
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
455
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
456
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
457
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
458
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
459
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
460
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
461
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
462
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
463
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
464
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
465
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
466
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
467
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
468
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
469
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
470
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
471
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
472
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
473
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
474
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
475
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
476
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
477
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
478
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
479
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
480
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
481
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
482
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
483
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
484
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
485
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
486
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
487
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
488
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
489
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
490
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
491
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
492
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
493
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
494
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
495
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
496
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
497
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
498
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
499
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
500
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
501
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
502
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
503
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
504
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
505
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
506
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
507
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
508
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
509
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
510
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
511
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
512
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
513
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
514
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
515
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
516
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
517
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
518
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
519
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
520
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
521
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
522
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
523
+ val value: Any? get() = if (values.isNull("value")) null else values.get("value")
524
+ val mode: Any? get() = if (values.isNull("mode")) null else values.get("mode")
525
+ val on_change: Any? get() = if (values.isNull("on_change")) null else values.get("on_change")
526
+ val minimum: Any? get() = if (values.isNull("minimum")) null else values.get("minimum")
527
+ val maximum: Any? get() = if (values.isNull("maximum")) null else values.get("maximum")
528
+ val disabled: Boolean? get() = if (values.isNull("disabled")) null else values.getBoolean("disabled")
529
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
530
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
531
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
532
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
533
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
534
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
535
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
536
+ }
537
+
538
+ data class ErrorBoundaryProps(val values: JSONObject) {
539
+ init {
540
+ }
541
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
542
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
543
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
544
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
545
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
546
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
547
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
548
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
549
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
550
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
551
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
552
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
553
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
554
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
555
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
556
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
557
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
558
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
559
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
560
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
561
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
562
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
563
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
564
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
565
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
566
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
567
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
568
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
569
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
570
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
571
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
572
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
573
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
574
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
575
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
576
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
577
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
578
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
579
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
580
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
581
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
582
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
583
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
584
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
585
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
586
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
587
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
588
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
589
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
590
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
591
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
592
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
593
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
594
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
595
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
596
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
597
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
598
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
599
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
600
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
601
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
602
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
603
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
604
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
605
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
606
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
607
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
608
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
609
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
610
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
611
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
612
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
613
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
614
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
615
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
616
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
617
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
618
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
619
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
620
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
621
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
622
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
623
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
624
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
625
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
626
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
627
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
628
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
629
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
630
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
631
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
632
+ val fallback: Any? get() = if (values.isNull("fallback")) null else values.get("fallback")
633
+ val on_error: Any? get() = if (values.isNull("on_error")) null else values.get("on_error")
634
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
635
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
636
+ }
637
+
638
+ data class FlatListProps(val values: JSONObject) {
639
+ init {
640
+ }
641
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
642
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
643
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
644
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
645
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
646
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
647
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
648
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
649
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
650
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
651
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
652
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
653
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
654
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
655
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
656
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
657
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
658
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
659
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
660
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
661
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
662
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
663
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
664
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
665
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
666
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
667
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
668
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
669
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
670
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
671
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
672
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
673
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
674
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
675
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
676
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
677
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
678
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
679
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
680
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
681
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
682
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
683
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
684
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
685
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
686
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
687
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
688
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
689
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
690
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
691
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
692
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
693
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
694
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
695
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
696
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
697
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
698
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
699
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
700
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
701
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
702
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
703
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
704
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
705
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
706
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
707
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
708
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
709
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
710
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
711
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
712
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
713
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
714
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
715
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
716
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
717
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
718
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
719
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
720
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
721
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
722
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
723
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
724
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
725
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
726
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
727
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
728
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
729
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
730
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
731
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
732
+ val data: Any? get() = if (values.isNull("data")) null else values.get("data")
733
+ val render_item: Any? get() = if (values.isNull("render_item")) null else values.get("render_item")
734
+ val key_extractor: Any? get() = if (values.isNull("key_extractor")) null else values.get("key_extractor")
735
+ val item_height: Any? get() = if (values.isNull("item_height")) null else values.get("item_height")
736
+ val get_item_height: Any? get() = if (values.isNull("get_item_height")) null else values.get("get_item_height")
737
+ val estimated_item_height: Any? get() = if (values.isNull("estimated_item_height")) null else values.get("estimated_item_height")
738
+ val separator_height: Double? get() = if (values.isNull("separator_height")) null else values.getDouble("separator_height")
739
+ val refresh_control: Any? get() = if (values.isNull("refresh_control")) null else values.get("refresh_control")
740
+ val horizontal: Boolean? get() = if (values.isNull("horizontal")) null else values.getBoolean("horizontal")
741
+ val num_columns: Int? get() = if (values.isNull("num_columns")) null else values.getInt("num_columns")
742
+ val list_header: Any? get() = if (values.isNull("list_header")) null else values.get("list_header")
743
+ val list_footer: Any? get() = if (values.isNull("list_footer")) null else values.get("list_footer")
744
+ val list_empty: Any? get() = if (values.isNull("list_empty")) null else values.get("list_empty")
745
+ val on_end_reached: Any? get() = if (values.isNull("on_end_reached")) null else values.get("on_end_reached")
746
+ val on_end_reached_threshold: Double? get() = if (values.isNull("on_end_reached_threshold")) null else values.getDouble("on_end_reached_threshold")
747
+ val on_viewable_items_changed: Any? get() = if (values.isNull("on_viewable_items_changed")) null else values.get("on_viewable_items_changed")
748
+ val on_scroll: Any? get() = if (values.isNull("on_scroll")) null else values.get("on_scroll")
749
+ val shows_scroll_indicator: Boolean? get() = if (values.isNull("shows_scroll_indicator")) null else values.getBoolean("shows_scroll_indicator")
750
+ val content_container_style: Any? get() = if (values.isNull("content_container_style")) null else values.get("content_container_style")
751
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
752
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
753
+ }
754
+
755
+ data class FragmentProps(val values: JSONObject) {
756
+ init {
757
+ }
758
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
759
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
760
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
761
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
762
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
763
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
764
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
765
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
766
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
767
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
768
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
769
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
770
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
771
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
772
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
773
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
774
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
775
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
776
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
777
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
778
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
779
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
780
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
781
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
782
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
783
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
784
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
785
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
786
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
787
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
788
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
789
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
790
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
791
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
792
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
793
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
794
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
795
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
796
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
797
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
798
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
799
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
800
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
801
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
802
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
803
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
804
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
805
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
806
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
807
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
808
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
809
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
810
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
811
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
812
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
813
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
814
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
815
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
816
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
817
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
818
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
819
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
820
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
821
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
822
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
823
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
824
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
825
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
826
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
827
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
828
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
829
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
830
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
831
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
832
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
833
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
834
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
835
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
836
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
837
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
838
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
839
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
840
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
841
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
842
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
843
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
844
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
845
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
846
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
847
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
848
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
849
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
850
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
851
+ }
852
+
853
+ data class ImageProps(val values: JSONObject) {
854
+ init {
855
+ }
856
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
857
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
858
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
859
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
860
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
861
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
862
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
863
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
864
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
865
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
866
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
867
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
868
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
869
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
870
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
871
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
872
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
873
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
874
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
875
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
876
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
877
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
878
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
879
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
880
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
881
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
882
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
883
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
884
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
885
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
886
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
887
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
888
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
889
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
890
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
891
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
892
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
893
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
894
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
895
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
896
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
897
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
898
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
899
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
900
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
901
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
902
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
903
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
904
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
905
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
906
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
907
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
908
+ val placeholder_color: Any? get() = if (values.isNull("placeholder_color")) null else values.get("placeholder_color")
909
+ val tint_color: Any? get() = if (values.isNull("tint_color")) null else values.get("tint_color")
910
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
911
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
912
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
913
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
914
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
915
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
916
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
917
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
918
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
919
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
920
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
921
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
922
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
923
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
924
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
925
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
926
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
927
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
928
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
929
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
930
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
931
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
932
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
933
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
934
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
935
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
936
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
937
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
938
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
939
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
940
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
941
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
942
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
943
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
944
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
945
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
946
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
947
+ val source: String? get() = if (values.isNull("source")) null else values.getString("source")
948
+ val scale_type: Any? get() = if (values.isNull("scale_type")) null else values.get("scale_type")
949
+ val on_load: Any? get() = if (values.isNull("on_load")) null else values.get("on_load")
950
+ val on_error: Any? get() = if (values.isNull("on_error")) null else values.get("on_error")
951
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
952
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
953
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
954
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
955
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
956
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
957
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
958
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
959
+ }
960
+
961
+ data class ImageBackgroundProps(val values: JSONObject) {
962
+ init {
963
+ }
964
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
965
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
966
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
967
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
968
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
969
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
970
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
971
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
972
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
973
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
974
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
975
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
976
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
977
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
978
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
979
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
980
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
981
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
982
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
983
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
984
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
985
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
986
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
987
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
988
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
989
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
990
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
991
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
992
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
993
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
994
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
995
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
996
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
997
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
998
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
999
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1000
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1001
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1002
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1003
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1004
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1005
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1006
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1007
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1008
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1009
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1010
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1011
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1012
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1013
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1014
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1015
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1016
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1017
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1018
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1019
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1020
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1021
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1022
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1023
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1024
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1025
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1026
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1027
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1028
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1029
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1030
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1031
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1032
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1033
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1034
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1035
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1036
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1037
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1038
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1039
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1040
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1041
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1042
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1043
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1044
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1045
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1046
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1047
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1048
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1049
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1050
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1051
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1052
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1053
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1054
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1055
+ val source: String? get() = if (values.isNull("source")) null else values.getString("source")
1056
+ val scale_type: Any? get() = if (values.isNull("scale_type")) null else values.get("scale_type")
1057
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
1058
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
1059
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
1060
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
1061
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
1062
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1063
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1064
+ }
1065
+
1066
+ data class KeyboardAvoidingViewProps(val values: JSONObject) {
1067
+ init {
1068
+ }
1069
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1070
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1071
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1072
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1073
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1074
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1075
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1076
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1077
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1078
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1079
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1080
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1081
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1082
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1083
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1084
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1085
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1086
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1087
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1088
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1089
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1090
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1091
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1092
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1093
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1094
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1095
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1096
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1097
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1098
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1099
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1100
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1101
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1102
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1103
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1104
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1105
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1106
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1107
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1108
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1109
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1110
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1111
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1112
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1113
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1114
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1115
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1116
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1117
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1118
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1119
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1120
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1121
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1122
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1123
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1124
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1125
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1126
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1127
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1128
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1129
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1130
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1131
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1132
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1133
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1134
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1135
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1136
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1137
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1138
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1139
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1140
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1141
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1142
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1143
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1144
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1145
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1146
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1147
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1148
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1149
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1150
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1151
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1152
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1153
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1154
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1155
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1156
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1157
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1158
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1159
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1160
+ val behavior: Any? get() = if (values.isNull("behavior")) null else values.get("behavior")
1161
+ val keyboard_vertical_offset: Double? get() = if (values.isNull("keyboard_vertical_offset")) null else values.getDouble("keyboard_vertical_offset")
1162
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1163
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1164
+ }
1165
+
1166
+ data class ModalProps(val values: JSONObject) {
1167
+ init {
1168
+ }
1169
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1170
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1171
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1172
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1173
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1174
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1175
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1176
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1177
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1178
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1179
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1180
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1181
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1182
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1183
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1184
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1185
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1186
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1187
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1188
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1189
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1190
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1191
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1192
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1193
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1194
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1195
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1196
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1197
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1198
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1199
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1200
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1201
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1202
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1203
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1204
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1205
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1206
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1207
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1208
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1209
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1210
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1211
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1212
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1213
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1214
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1215
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1216
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1217
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1218
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1219
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1220
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1221
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1222
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1223
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1224
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1225
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1226
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1227
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1228
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1229
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1230
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1231
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1232
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1233
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1234
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1235
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1236
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1237
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1238
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1239
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1240
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1241
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1242
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1243
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1244
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1245
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1246
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1247
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1248
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1249
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1250
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1251
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1252
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1253
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1254
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1255
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1256
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1257
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1258
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1259
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1260
+ val visible: Boolean? get() = if (values.isNull("visible")) null else values.getBoolean("visible")
1261
+ val on_dismiss: Any? get() = if (values.isNull("on_dismiss")) null else values.get("on_dismiss")
1262
+ val on_show: Any? get() = if (values.isNull("on_show")) null else values.get("on_show")
1263
+ val title: Any? get() = if (values.isNull("title")) null else values.get("title")
1264
+ val animation_type: Any? get() = if (values.isNull("animation_type")) null else values.get("animation_type")
1265
+ val transparent: Boolean? get() = if (values.isNull("transparent")) null else values.getBoolean("transparent")
1266
+ val presentation_style: Any? get() = if (values.isNull("presentation_style")) null else values.get("presentation_style")
1267
+ val dismiss_on_backdrop: Boolean? get() = if (values.isNull("dismiss_on_backdrop")) null else values.getBoolean("dismiss_on_backdrop")
1268
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1269
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1270
+ }
1271
+
1272
+ data class PickerProps(val values: JSONObject) {
1273
+ init {
1274
+ }
1275
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1276
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1277
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1278
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1279
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1280
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1281
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1282
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1283
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1284
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1285
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1286
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1287
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1288
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1289
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1290
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1291
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1292
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1293
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1294
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1295
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1296
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1297
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1298
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1299
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1300
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1301
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1302
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1303
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1304
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1305
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1306
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1307
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1308
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1309
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1310
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1311
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1312
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1313
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1314
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1315
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1316
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1317
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1318
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1319
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1320
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1321
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1322
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1323
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1324
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1325
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1326
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1327
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1328
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1329
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1330
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1331
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1332
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1333
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1334
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1335
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1336
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1337
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1338
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1339
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1340
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1341
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1342
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1343
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1344
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1345
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1346
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1347
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1348
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1349
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1350
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1351
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1352
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1353
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1354
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1355
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1356
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1357
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1358
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1359
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1360
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1361
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1362
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1363
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1364
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1365
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1366
+ val value: Any? get() = if (values.isNull("value")) null else values.get("value")
1367
+ val disabled: Boolean? get() = if (values.isNull("disabled")) null else values.getBoolean("disabled")
1368
+ val items: Any? get() = if (values.isNull("items")) null else values.get("items")
1369
+ val on_change: Any? get() = if (values.isNull("on_change")) null else values.get("on_change")
1370
+ val placeholder: String? get() = if (values.isNull("placeholder")) null else values.getString("placeholder")
1371
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
1372
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
1373
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
1374
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
1375
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
1376
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
1377
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1378
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1379
+ }
1380
+
1381
+ data class PortalProps(val values: JSONObject) {
1382
+ init {
1383
+ }
1384
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1385
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1386
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1387
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1388
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1389
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1390
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1391
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1392
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1393
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1394
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1395
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1396
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1397
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1398
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1399
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1400
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1401
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1402
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1403
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1404
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1405
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1406
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1407
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1408
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1409
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1410
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1411
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1412
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1413
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1414
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1415
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1416
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1417
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1418
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1419
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1420
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1421
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1422
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1423
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1424
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1425
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1426
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1427
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1428
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1429
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1430
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1431
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1432
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1433
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1434
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1435
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1436
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1437
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1438
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1439
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1440
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1441
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1442
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1443
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1444
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1445
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1446
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1447
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1448
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1449
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1450
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1451
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1452
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1453
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1454
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1455
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1456
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1457
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1458
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1459
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1460
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1461
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1462
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1463
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1464
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1465
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1466
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1467
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1468
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1469
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1470
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1471
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1472
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1473
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1474
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1475
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1476
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1477
+ }
1478
+
1479
+ data class PressableProps(val values: JSONObject) {
1480
+ init {
1481
+ }
1482
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1483
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1484
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1485
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1486
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1487
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1488
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1489
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1490
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1491
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1492
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1493
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1494
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1495
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1496
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1497
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1498
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1499
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1500
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1501
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1502
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1503
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1504
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1505
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1506
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1507
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1508
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1509
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1510
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1511
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1512
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1513
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1514
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1515
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1516
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1517
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1518
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1519
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1520
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1521
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1522
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1523
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1524
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1525
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1526
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1527
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1528
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1529
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1530
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1531
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1532
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1533
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1534
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1535
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1536
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1537
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1538
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1539
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1540
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1541
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1542
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1543
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1544
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1545
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1546
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1547
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1548
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1549
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1550
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1551
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1552
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1553
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1554
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1555
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1556
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1557
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1558
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1559
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1560
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1561
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1562
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1563
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1564
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1565
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1566
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1567
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1568
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1569
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1570
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1571
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1572
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1573
+ val on_press: Any? get() = if (values.isNull("on_press")) null else values.get("on_press")
1574
+ val on_long_press: Any? get() = if (values.isNull("on_long_press")) null else values.get("on_long_press")
1575
+ val on_press_in: Any? get() = if (values.isNull("on_press_in")) null else values.get("on_press_in")
1576
+ val on_press_out: Any? get() = if (values.isNull("on_press_out")) null else values.get("on_press_out")
1577
+ val pressed_opacity: Double? get() = if (values.isNull("pressed_opacity")) null else values.getDouble("pressed_opacity")
1578
+ val gestures: Any? get() = if (values.isNull("gestures")) null else values.get("gestures")
1579
+ val hit_slop: Any? get() = if (values.isNull("hit_slop")) null else values.get("hit_slop")
1580
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1581
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
1582
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
1583
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
1584
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
1585
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
1586
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
1587
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
1588
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1589
+ }
1590
+
1591
+ data class ProgressBarProps(val values: JSONObject) {
1592
+ init {
1593
+ }
1594
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1595
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1596
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1597
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1598
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1599
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1600
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1601
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1602
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1603
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1604
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1605
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1606
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1607
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1608
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1609
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1610
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1611
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1612
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1613
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1614
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1615
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1616
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1617
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1618
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1619
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1620
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1621
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1622
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1623
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1624
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1625
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1626
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1627
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1628
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1629
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1630
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1631
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1632
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1633
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1634
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1635
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1636
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1637
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1638
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1639
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1640
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1641
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1642
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1643
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1644
+ val color: Any? get() = if (values.isNull("color")) null else values.get("color")
1645
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1646
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1647
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1648
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1649
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1650
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1651
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1652
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1653
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1654
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1655
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1656
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1657
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1658
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1659
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1660
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1661
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1662
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1663
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1664
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1665
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1666
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1667
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1668
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1669
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1670
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1671
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1672
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1673
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1674
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1675
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1676
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1677
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1678
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1679
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1680
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1681
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1682
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1683
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1684
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1685
+ val value: Double? get() = if (values.isNull("value")) null else values.getDouble("value")
1686
+ val track_color: Any? get() = if (values.isNull("track_color")) null else values.get("track_color")
1687
+ val indeterminate: Boolean? get() = if (values.isNull("indeterminate")) null else values.getBoolean("indeterminate")
1688
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1689
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1690
+ }
1691
+
1692
+ data class RefreshControlProps(val values: JSONObject) {
1693
+ init {
1694
+ }
1695
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1696
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1697
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1698
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1699
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1700
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1701
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1702
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1703
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1704
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1705
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1706
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1707
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1708
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1709
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1710
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1711
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1712
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1713
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1714
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1715
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1716
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1717
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1718
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1719
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1720
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1721
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1722
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1723
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1724
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1725
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1726
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1727
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1728
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1729
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1730
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1731
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1732
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1733
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1734
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1735
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1736
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1737
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1738
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1739
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1740
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1741
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1742
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1743
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1744
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1745
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1746
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1747
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1748
+ val tint_color: Any? get() = if (values.isNull("tint_color")) null else values.get("tint_color")
1749
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1750
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1751
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1752
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1753
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1754
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1755
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1756
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1757
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1758
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1759
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1760
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1761
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1762
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1763
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1764
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1765
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1766
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1767
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1768
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1769
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1770
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1771
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1772
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1773
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1774
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1775
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1776
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1777
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1778
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1779
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1780
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1781
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1782
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1783
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1784
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1785
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1786
+ val refreshing: Boolean? get() = if (values.isNull("refreshing")) null else values.getBoolean("refreshing")
1787
+ val on_refresh: Any? get() = if (values.isNull("on_refresh")) null else values.get("on_refresh")
1788
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1789
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1790
+ }
1791
+
1792
+ data class RowProps(val values: JSONObject) {
1793
+ init {
1794
+ }
1795
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1796
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1797
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1798
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1799
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1800
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1801
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1802
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1803
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1804
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1805
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1806
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1807
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1808
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1809
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1810
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1811
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1812
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1813
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1814
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1815
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1816
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1817
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1818
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1819
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1820
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1821
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1822
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1823
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1824
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1825
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1826
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1827
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1828
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1829
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1830
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1831
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1832
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1833
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1834
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1835
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1836
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1837
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1838
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1839
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1840
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1841
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1842
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1843
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1844
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1845
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1846
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1847
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1848
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1849
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1850
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1851
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1852
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1853
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1854
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1855
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1856
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1857
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1858
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1859
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1860
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1861
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1862
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1863
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1864
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1865
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1866
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1867
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1868
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1869
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1870
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1871
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1872
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1873
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1874
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1875
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1876
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1877
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1878
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1879
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1880
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1881
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1882
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1883
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1884
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1885
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1886
+ val gestures: Any? get() = if (values.isNull("gestures")) null else values.get("gestures")
1887
+ val hit_slop: Any? get() = if (values.isNull("hit_slop")) null else values.get("hit_slop")
1888
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1889
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
1890
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
1891
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
1892
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
1893
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
1894
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
1895
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
1896
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1897
+ }
1898
+
1899
+ data class SafeAreaViewProps(val values: JSONObject) {
1900
+ init {
1901
+ }
1902
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
1903
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
1904
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
1905
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
1906
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
1907
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
1908
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
1909
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
1910
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
1911
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
1912
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
1913
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
1914
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
1915
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
1916
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
1917
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
1918
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
1919
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
1920
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
1921
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
1922
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
1923
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
1924
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
1925
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
1926
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
1927
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
1928
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
1929
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
1930
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
1931
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
1932
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
1933
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
1934
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
1935
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
1936
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
1937
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
1938
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
1939
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
1940
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
1941
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
1942
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
1943
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
1944
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
1945
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
1946
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
1947
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
1948
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
1949
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
1950
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
1951
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
1952
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
1953
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
1954
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
1955
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
1956
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
1957
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
1958
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
1959
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
1960
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
1961
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
1962
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
1963
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
1964
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
1965
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
1966
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
1967
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
1968
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
1969
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
1970
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
1971
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
1972
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
1973
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
1974
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
1975
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
1976
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
1977
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
1978
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
1979
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
1980
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
1981
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
1982
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
1983
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
1984
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
1985
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
1986
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
1987
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
1988
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
1989
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
1990
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
1991
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
1992
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
1993
+ val edges: Any? get() = if (values.isNull("edges")) null else values.get("edges")
1994
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
1995
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
1996
+ }
1997
+
1998
+ data class ScreenProps(val values: JSONObject) {
1999
+ init {
2000
+ }
2001
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2002
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2003
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2004
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2005
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2006
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2007
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2008
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2009
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2010
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2011
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2012
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2013
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2014
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2015
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2016
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2017
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2018
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2019
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2020
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2021
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2022
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2023
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2024
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2025
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2026
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2027
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2028
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2029
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2030
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2031
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2032
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2033
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2034
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2035
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2036
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2037
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2038
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2039
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2040
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2041
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2042
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2043
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2044
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2045
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2046
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2047
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2048
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2049
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2050
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2051
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2052
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2053
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2054
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
2055
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2056
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2057
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2058
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2059
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2060
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2061
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2062
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2063
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2064
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2065
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2066
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2067
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2068
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2069
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2070
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2071
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2072
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2073
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2074
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2075
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2076
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2077
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2078
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2079
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2080
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2081
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2082
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2083
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2084
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2085
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2086
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2087
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2088
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2089
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2090
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2091
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2092
+ val gestures: Any? get() = if (values.isNull("gestures")) null else values.get("gestures")
2093
+ val hit_slop: Any? get() = if (values.isNull("hit_slop")) null else values.get("hit_slop")
2094
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2095
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
2096
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
2097
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
2098
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
2099
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
2100
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
2101
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
2102
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2103
+ val route_key: String? get() = if (values.isNull("route_key")) null else values.getString("route_key")
2104
+ val title: String? get() = if (values.isNull("title")) null else values.getString("title")
2105
+ val active: Boolean? get() = if (values.isNull("active")) null else values.getBoolean("active")
2106
+ }
2107
+
2108
+ data class ScreenStackProps(val values: JSONObject) {
2109
+ init {
2110
+ }
2111
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2112
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2113
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2114
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2115
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2116
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2117
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2118
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2119
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2120
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2121
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2122
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2123
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2124
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2125
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2126
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2127
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2128
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2129
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2130
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2131
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2132
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2133
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2134
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2135
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2136
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2137
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2138
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2139
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2140
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2141
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2142
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2143
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2144
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2145
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2146
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2147
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2148
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2149
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2150
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2151
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2152
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2153
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2154
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2155
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2156
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2157
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2158
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2159
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2160
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2161
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2162
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2163
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2164
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
2165
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2166
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2167
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2168
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2169
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2170
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2171
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2172
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2173
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2174
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2175
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2176
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2177
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2178
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2179
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2180
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2181
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2182
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2183
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2184
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2185
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2186
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2187
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2188
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2189
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2190
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2191
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2192
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2193
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2194
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2195
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2196
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2197
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2198
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2199
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2200
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2201
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2202
+ val gestures: Any? get() = if (values.isNull("gestures")) null else values.get("gestures")
2203
+ val hit_slop: Any? get() = if (values.isNull("hit_slop")) null else values.get("hit_slop")
2204
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2205
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
2206
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
2207
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
2208
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
2209
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
2210
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
2211
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
2212
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2213
+ val on_native_back: Any? get() = if (values.isNull("on_native_back")) null else values.get("on_native_back")
2214
+ }
2215
+
2216
+ data class ScrollViewProps(val values: JSONObject) {
2217
+ init {
2218
+ }
2219
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2220
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2221
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2222
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2223
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2224
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2225
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2226
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2227
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2228
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2229
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2230
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2231
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2232
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2233
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2234
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2235
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2236
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2237
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2238
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2239
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2240
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2241
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2242
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2243
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2244
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2245
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2246
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2247
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2248
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2249
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2250
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2251
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2252
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2253
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2254
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2255
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2256
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2257
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2258
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2259
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2260
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2261
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2262
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2263
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2264
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2265
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2266
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2267
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2268
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2269
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2270
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2271
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2272
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
2273
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2274
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2275
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2276
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2277
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2278
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2279
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2280
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2281
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2282
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2283
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2284
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2285
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2286
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2287
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2288
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2289
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2290
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2291
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2292
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2293
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2294
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2295
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2296
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2297
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2298
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2299
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2300
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2301
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2302
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2303
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2304
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2305
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2306
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2307
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2308
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2309
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2310
+ val refresh_control: Any? get() = if (values.isNull("refresh_control")) null else values.get("refresh_control")
2311
+ val scroll_axis: Any? get() = if (values.isNull("scroll_axis")) null else values.get("scroll_axis")
2312
+ val on_scroll: Any? get() = if (values.isNull("on_scroll")) null else values.get("on_scroll")
2313
+ val shows_scroll_indicator: Boolean? get() = if (values.isNull("shows_scroll_indicator")) null else values.getBoolean("shows_scroll_indicator")
2314
+ val paging_enabled: Boolean? get() = if (values.isNull("paging_enabled")) null else values.getBoolean("paging_enabled")
2315
+ val bounces: Boolean? get() = if (values.isNull("bounces")) null else values.getBoolean("bounces")
2316
+ val content_container_style: Any? get() = if (values.isNull("content_container_style")) null else values.get("content_container_style")
2317
+ val keyboard_dismiss_mode: Any? get() = if (values.isNull("keyboard_dismiss_mode")) null else values.get("keyboard_dismiss_mode")
2318
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2319
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2320
+ }
2321
+
2322
+ data class SectionListProps(val values: JSONObject) {
2323
+ init {
2324
+ }
2325
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2326
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2327
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2328
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2329
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2330
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2331
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2332
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2333
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2334
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2335
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2336
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2337
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2338
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2339
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2340
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2341
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2342
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2343
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2344
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2345
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2346
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2347
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2348
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2349
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2350
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2351
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2352
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2353
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2354
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2355
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2356
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2357
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2358
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2359
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2360
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2361
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2362
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2363
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2364
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2365
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2366
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2367
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2368
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2369
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2370
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2371
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2372
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2373
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2374
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2375
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2376
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2377
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2378
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
2379
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2380
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2381
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2382
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2383
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2384
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2385
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2386
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2387
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2388
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2389
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2390
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2391
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2392
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2393
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2394
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2395
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2396
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2397
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2398
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2399
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2400
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2401
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2402
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2403
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2404
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2405
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2406
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2407
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2408
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2409
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2410
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2411
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2412
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2413
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2414
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2415
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2416
+ val sections: Any? get() = if (values.isNull("sections")) null else values.get("sections")
2417
+ val render_item: Any? get() = if (values.isNull("render_item")) null else values.get("render_item")
2418
+ val render_section_header: Any? get() = if (values.isNull("render_section_header")) null else values.get("render_section_header")
2419
+ val key_extractor: Any? get() = if (values.isNull("key_extractor")) null else values.get("key_extractor")
2420
+ val item_height: Any? get() = if (values.isNull("item_height")) null else values.get("item_height")
2421
+ val get_item_height: Any? get() = if (values.isNull("get_item_height")) null else values.get("get_item_height")
2422
+ val estimated_item_height: Any? get() = if (values.isNull("estimated_item_height")) null else values.get("estimated_item_height")
2423
+ val section_header_height: Any? get() = if (values.isNull("section_header_height")) null else values.get("section_header_height")
2424
+ val separator_height: Double? get() = if (values.isNull("separator_height")) null else values.getDouble("separator_height")
2425
+ val refresh_control: Any? get() = if (values.isNull("refresh_control")) null else values.get("refresh_control")
2426
+ val list_header: Any? get() = if (values.isNull("list_header")) null else values.get("list_header")
2427
+ val list_footer: Any? get() = if (values.isNull("list_footer")) null else values.get("list_footer")
2428
+ val list_empty: Any? get() = if (values.isNull("list_empty")) null else values.get("list_empty")
2429
+ val on_end_reached: Any? get() = if (values.isNull("on_end_reached")) null else values.get("on_end_reached")
2430
+ val on_end_reached_threshold: Double? get() = if (values.isNull("on_end_reached_threshold")) null else values.getDouble("on_end_reached_threshold")
2431
+ val on_scroll: Any? get() = if (values.isNull("on_scroll")) null else values.get("on_scroll")
2432
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2433
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2434
+ }
2435
+
2436
+ data class SegmentedControlProps(val values: JSONObject) {
2437
+ init {
2438
+ }
2439
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2440
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2441
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2442
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2443
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2444
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2445
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2446
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2447
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2448
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2449
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2450
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2451
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2452
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2453
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2454
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2455
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2456
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2457
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2458
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2459
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2460
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2461
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2462
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2463
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2464
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2465
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2466
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2467
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2468
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2469
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2470
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2471
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2472
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2473
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2474
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2475
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2476
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2477
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2478
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2479
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2480
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2481
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2482
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2483
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2484
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2485
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2486
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2487
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2488
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2489
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2490
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2491
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2492
+ val tint_color: Any? get() = if (values.isNull("tint_color")) null else values.get("tint_color")
2493
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2494
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2495
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2496
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2497
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2498
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2499
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2500
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2501
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2502
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2503
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2504
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2505
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2506
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2507
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2508
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2509
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2510
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2511
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2512
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2513
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2514
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2515
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2516
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2517
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2518
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2519
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2520
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2521
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2522
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2523
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2524
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2525
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2526
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2527
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2528
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2529
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2530
+ val segments: Any? get() = if (values.isNull("segments")) null else values.get("segments")
2531
+ val selected_index: Int? get() = if (values.isNull("selected_index")) null else values.getInt("selected_index")
2532
+ val on_change: Any? get() = if (values.isNull("on_change")) null else values.get("on_change")
2533
+ val disabled: Boolean? get() = if (values.isNull("disabled")) null else values.getBoolean("disabled")
2534
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
2535
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
2536
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
2537
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
2538
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
2539
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2540
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2541
+ }
2542
+
2543
+ data class SliderProps(val values: JSONObject) {
2544
+ init {
2545
+ }
2546
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2547
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2548
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2549
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2550
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2551
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2552
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2553
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2554
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2555
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2556
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2557
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2558
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2559
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2560
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2561
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2562
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2563
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2564
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2565
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2566
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2567
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2568
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2569
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2570
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2571
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2572
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2573
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2574
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2575
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2576
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2577
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2578
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2579
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2580
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2581
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2582
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2583
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2584
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2585
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2586
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2587
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2588
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2589
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2590
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2591
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2592
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2593
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2594
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2595
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2596
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2597
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2598
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2599
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
2600
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2601
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2602
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2603
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2604
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2605
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2606
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2607
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2608
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2609
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2610
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2611
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2612
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2613
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2614
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2615
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2616
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2617
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2618
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2619
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2620
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2621
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2622
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2623
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2624
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2625
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2626
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2627
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2628
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2629
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2630
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2631
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2632
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2633
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2634
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2635
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2636
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2637
+ val value: Double? get() = if (values.isNull("value")) null else values.getDouble("value")
2638
+ val min_value: Double? get() = if (values.isNull("min_value")) null else values.getDouble("min_value")
2639
+ val max_value: Double? get() = if (values.isNull("max_value")) null else values.getDouble("max_value")
2640
+ val on_change: Any? get() = if (values.isNull("on_change")) null else values.get("on_change")
2641
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
2642
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2643
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2644
+ }
2645
+
2646
+ data class SpacerProps(val values: JSONObject) {
2647
+ init {
2648
+ }
2649
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2650
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2651
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2652
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2653
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2654
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2655
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2656
+ val flex: Any? get() = if (values.isNull("flex")) null else values.get("flex")
2657
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2658
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2659
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2660
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2661
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2662
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2663
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2664
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2665
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2666
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2667
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2668
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2669
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2670
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2671
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2672
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2673
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2674
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2675
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2676
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2677
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2678
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2679
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2680
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2681
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2682
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2683
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2684
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2685
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2686
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2687
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2688
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2689
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2690
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2691
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2692
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2693
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2694
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2695
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2696
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2697
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2698
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2699
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2700
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2701
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2702
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
2703
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2704
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2705
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2706
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2707
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2708
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2709
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2710
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2711
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2712
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2713
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2714
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2715
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2716
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2717
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2718
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2719
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2720
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2721
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2722
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2723
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2724
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2725
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2726
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2727
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2728
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2729
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2730
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2731
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2732
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2733
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2734
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2735
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2736
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2737
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2738
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2739
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2740
+ val size: Any? get() = if (values.isNull("size")) null else values.get("size")
2741
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2742
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2743
+ }
2744
+
2745
+ data class StatusBarProps(val values: JSONObject) {
2746
+ init {
2747
+ }
2748
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2749
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2750
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2751
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2752
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2753
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2754
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2755
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2756
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2757
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2758
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2759
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2760
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2761
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2762
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2763
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2764
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2765
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2766
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2767
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2768
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2769
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2770
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2771
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2772
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2773
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2774
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2775
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2776
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2777
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2778
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2779
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2780
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2781
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2782
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2783
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2784
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2785
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2786
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2787
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2788
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2789
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2790
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2791
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2792
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2793
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2794
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2795
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2796
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2797
+ val background_color: Any? get() = if (values.isNull("background_color")) null else values.get("background_color")
2798
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2799
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2800
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2801
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
2802
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2803
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2804
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2805
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2806
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2807
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2808
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2809
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2810
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2811
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2812
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2813
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2814
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2815
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2816
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2817
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2818
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2819
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2820
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2821
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2822
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2823
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2824
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2825
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2826
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2827
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2828
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2829
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2830
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2831
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2832
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2833
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2834
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2835
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2836
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2837
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2838
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2839
+ val bar_style: Any? get() = if (values.isNull("bar_style")) null else values.get("bar_style")
2840
+ val hidden: Any? get() = if (values.isNull("hidden")) null else values.get("hidden")
2841
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2842
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2843
+ }
2844
+
2845
+ data class SuspenseProps(val values: JSONObject) {
2846
+ init {
2847
+ }
2848
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2849
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2850
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2851
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2852
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2853
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2854
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2855
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2856
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2857
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2858
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2859
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2860
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2861
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2862
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2863
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2864
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2865
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2866
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2867
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2868
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2869
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2870
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2871
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2872
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2873
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2874
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2875
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2876
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2877
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2878
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2879
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2880
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2881
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2882
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2883
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2884
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2885
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2886
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2887
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2888
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2889
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2890
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2891
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2892
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2893
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2894
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2895
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2896
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2897
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2898
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2899
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2900
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
2901
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
2902
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
2903
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
2904
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
2905
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
2906
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
2907
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
2908
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
2909
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
2910
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
2911
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
2912
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
2913
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
2914
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
2915
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
2916
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
2917
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
2918
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
2919
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
2920
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
2921
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
2922
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
2923
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
2924
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
2925
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
2926
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
2927
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
2928
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
2929
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
2930
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
2931
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
2932
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
2933
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
2934
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
2935
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
2936
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
2937
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
2938
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
2939
+ val fallback: Any? get() = if (values.isNull("fallback")) null else values.get("fallback")
2940
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
2941
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
2942
+ }
2943
+
2944
+ data class SwitchProps(val values: JSONObject) {
2945
+ init {
2946
+ }
2947
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
2948
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
2949
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
2950
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
2951
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
2952
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
2953
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
2954
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
2955
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
2956
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
2957
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
2958
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
2959
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
2960
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
2961
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
2962
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
2963
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
2964
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
2965
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
2966
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
2967
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
2968
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
2969
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
2970
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
2971
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
2972
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
2973
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
2974
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
2975
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
2976
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
2977
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
2978
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
2979
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
2980
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
2981
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
2982
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
2983
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
2984
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
2985
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
2986
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
2987
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
2988
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
2989
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
2990
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
2991
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
2992
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
2993
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
2994
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
2995
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
2996
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
2997
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
2998
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
2999
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
3000
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
3001
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
3002
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
3003
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
3004
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
3005
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
3006
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
3007
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
3008
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
3009
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
3010
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
3011
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
3012
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
3013
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
3014
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
3015
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
3016
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
3017
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
3018
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
3019
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
3020
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
3021
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
3022
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
3023
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
3024
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
3025
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
3026
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
3027
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
3028
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
3029
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
3030
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
3031
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
3032
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
3033
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
3034
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
3035
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
3036
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
3037
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
3038
+ val value: Boolean? get() = if (values.isNull("value")) null else values.getBoolean("value")
3039
+ val on_change: Any? get() = if (values.isNull("on_change")) null else values.get("on_change")
3040
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
3041
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
3042
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
3043
+ }
3044
+
3045
+ data class TextProps(val values: JSONObject) {
3046
+ init {
3047
+ }
3048
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
3049
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
3050
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
3051
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
3052
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
3053
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
3054
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
3055
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
3056
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
3057
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
3058
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
3059
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
3060
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
3061
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
3062
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
3063
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
3064
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
3065
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
3066
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
3067
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
3068
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
3069
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
3070
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
3071
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
3072
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
3073
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
3074
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
3075
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
3076
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
3077
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
3078
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
3079
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
3080
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
3081
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
3082
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
3083
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
3084
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
3085
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
3086
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
3087
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
3088
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
3089
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
3090
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
3091
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
3092
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
3093
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
3094
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
3095
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
3096
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
3097
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
3098
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
3099
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
3100
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
3101
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
3102
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
3103
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
3104
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
3105
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
3106
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
3107
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
3108
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
3109
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
3110
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
3111
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
3112
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
3113
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
3114
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
3115
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
3116
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
3117
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
3118
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
3119
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
3120
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
3121
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
3122
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
3123
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
3124
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
3125
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
3126
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
3127
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
3128
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
3129
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
3130
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
3131
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
3132
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
3133
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
3134
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
3135
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
3136
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
3137
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
3138
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
3139
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
3140
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
3141
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
3142
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
3143
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
3144
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
3145
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
3146
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
3147
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
3148
+ val text: String? get() = if (values.isNull("text")) null else values.getString("text")
3149
+ val spans: Any? get() = if (values.isNull("spans")) null else values.get("spans")
3150
+ }
3151
+
3152
+ data class TextInputProps(val values: JSONObject) {
3153
+ init {
3154
+ }
3155
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
3156
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
3157
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
3158
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
3159
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
3160
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
3161
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
3162
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
3163
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
3164
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
3165
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
3166
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
3167
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
3168
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
3169
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
3170
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
3171
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
3172
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
3173
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
3174
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
3175
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
3176
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
3177
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
3178
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
3179
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
3180
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
3181
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
3182
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
3183
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
3184
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
3185
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
3186
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
3187
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
3188
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
3189
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
3190
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
3191
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
3192
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
3193
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
3194
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
3195
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
3196
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
3197
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
3198
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
3199
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
3200
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
3201
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
3202
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
3203
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
3204
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
3205
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
3206
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
3207
+ val placeholder_color: Any? get() = if (values.isNull("placeholder_color")) null else values.get("placeholder_color")
3208
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
3209
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
3210
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
3211
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
3212
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
3213
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
3214
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
3215
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
3216
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
3217
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
3218
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
3219
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
3220
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
3221
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
3222
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
3223
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
3224
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
3225
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
3226
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
3227
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
3228
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
3229
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
3230
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
3231
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
3232
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
3233
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
3234
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
3235
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
3236
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
3237
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
3238
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
3239
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
3240
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
3241
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
3242
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
3243
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
3244
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
3245
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
3246
+ val value: String? get() = if (values.isNull("value")) null else values.getString("value")
3247
+ val placeholder: Any? get() = if (values.isNull("placeholder")) null else values.get("placeholder")
3248
+ val on_change: Any? get() = if (values.isNull("on_change")) null else values.get("on_change")
3249
+ val on_submit: Any? get() = if (values.isNull("on_submit")) null else values.get("on_submit")
3250
+ val secure: Boolean? get() = if (values.isNull("secure")) null else values.getBoolean("secure")
3251
+ val multiline: Boolean? get() = if (values.isNull("multiline")) null else values.getBoolean("multiline")
3252
+ val keyboard_type: Any? get() = if (values.isNull("keyboard_type")) null else values.get("keyboard_type")
3253
+ val auto_capitalize: Any? get() = if (values.isNull("auto_capitalize")) null else values.get("auto_capitalize")
3254
+ val auto_correct: Any? get() = if (values.isNull("auto_correct")) null else values.get("auto_correct")
3255
+ val auto_focus: Boolean? get() = if (values.isNull("auto_focus")) null else values.getBoolean("auto_focus")
3256
+ val return_key_type: Any? get() = if (values.isNull("return_key_type")) null else values.get("return_key_type")
3257
+ val max_length: Any? get() = if (values.isNull("max_length")) null else values.get("max_length")
3258
+ val editable: Boolean? get() = if (values.isNull("editable")) null else values.getBoolean("editable")
3259
+ val clear_button: Boolean? get() = if (values.isNull("clear_button")) null else values.getBoolean("clear_button")
3260
+ val on_focus: Any? get() = if (values.isNull("on_focus")) null else values.get("on_focus")
3261
+ val on_blur: Any? get() = if (values.isNull("on_blur")) null else values.get("on_blur")
3262
+ val selection_color: Any? get() = if (values.isNull("selection_color")) null else values.get("selection_color")
3263
+ val text_content_type: Any? get() = if (values.isNull("text_content_type")) null else values.get("text_content_type")
3264
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
3265
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
3266
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
3267
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
3268
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
3269
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
3270
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
3271
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
3272
+ }
3273
+
3274
+ data class TouchableOpacityProps(val values: JSONObject) {
3275
+ init {
3276
+ }
3277
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
3278
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
3279
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
3280
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
3281
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
3282
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
3283
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
3284
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
3285
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
3286
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
3287
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
3288
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
3289
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
3290
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
3291
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
3292
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
3293
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
3294
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
3295
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
3296
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
3297
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
3298
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
3299
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
3300
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
3301
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
3302
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
3303
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
3304
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
3305
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
3306
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
3307
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
3308
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
3309
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
3310
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
3311
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
3312
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
3313
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
3314
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
3315
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
3316
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
3317
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
3318
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
3319
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
3320
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
3321
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
3322
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
3323
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
3324
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
3325
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
3326
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
3327
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
3328
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
3329
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
3330
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
3331
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
3332
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
3333
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
3334
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
3335
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
3336
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
3337
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
3338
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
3339
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
3340
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
3341
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
3342
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
3343
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
3344
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
3345
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
3346
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
3347
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
3348
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
3349
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
3350
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
3351
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
3352
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
3353
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
3354
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
3355
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
3356
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
3357
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
3358
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
3359
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
3360
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
3361
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
3362
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
3363
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
3364
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
3365
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
3366
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
3367
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
3368
+ val on_press: Any? get() = if (values.isNull("on_press")) null else values.get("on_press")
3369
+ val on_long_press: Any? get() = if (values.isNull("on_long_press")) null else values.get("on_long_press")
3370
+ val active_opacity: Double? get() = if (values.isNull("active_opacity")) null else values.getDouble("active_opacity")
3371
+ val disabled: Boolean? get() = if (values.isNull("disabled")) null else values.getBoolean("disabled")
3372
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
3373
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
3374
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
3375
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
3376
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
3377
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
3378
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
3379
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
3380
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
3381
+ }
3382
+
3383
+ data class ViewProps(val values: JSONObject) {
3384
+ init {
3385
+ }
3386
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
3387
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
3388
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
3389
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
3390
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
3391
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
3392
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
3393
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
3394
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
3395
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
3396
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
3397
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
3398
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
3399
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
3400
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
3401
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
3402
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
3403
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
3404
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
3405
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
3406
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
3407
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
3408
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
3409
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
3410
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
3411
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
3412
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
3413
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
3414
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
3415
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
3416
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
3417
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
3418
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
3419
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
3420
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
3421
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
3422
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
3423
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
3424
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
3425
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
3426
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
3427
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
3428
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
3429
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
3430
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
3431
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
3432
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
3433
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
3434
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
3435
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
3436
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
3437
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
3438
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
3439
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
3440
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
3441
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
3442
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
3443
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
3444
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
3445
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
3446
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
3447
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
3448
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
3449
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
3450
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
3451
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
3452
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
3453
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
3454
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
3455
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
3456
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
3457
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
3458
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
3459
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
3460
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
3461
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
3462
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
3463
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
3464
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
3465
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
3466
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
3467
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
3468
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
3469
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
3470
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
3471
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
3472
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
3473
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
3474
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
3475
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
3476
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
3477
+ val gestures: Any? get() = if (values.isNull("gestures")) null else values.get("gestures")
3478
+ val hit_slop: Any? get() = if (values.isNull("hit_slop")) null else values.get("hit_slop")
3479
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
3480
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
3481
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
3482
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
3483
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
3484
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
3485
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
3486
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
3487
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
3488
+ }
3489
+
3490
+ data class VirtualListProps(val values: JSONObject) {
3491
+ init {
3492
+ }
3493
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
3494
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
3495
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
3496
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
3497
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
3498
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
3499
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
3500
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
3501
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
3502
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
3503
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
3504
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
3505
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
3506
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
3507
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
3508
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
3509
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
3510
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
3511
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
3512
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
3513
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
3514
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
3515
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
3516
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
3517
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
3518
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
3519
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
3520
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
3521
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
3522
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
3523
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
3524
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
3525
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
3526
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
3527
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
3528
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
3529
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
3530
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
3531
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
3532
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
3533
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
3534
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
3535
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
3536
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
3537
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
3538
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
3539
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
3540
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
3541
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
3542
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
3543
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
3544
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
3545
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
3546
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
3547
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
3548
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
3549
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
3550
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
3551
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
3552
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
3553
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
3554
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
3555
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
3556
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
3557
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
3558
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
3559
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
3560
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
3561
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
3562
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
3563
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
3564
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
3565
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
3566
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
3567
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
3568
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
3569
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
3570
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
3571
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
3572
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
3573
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
3574
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
3575
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
3576
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
3577
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
3578
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
3579
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
3580
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
3581
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
3582
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
3583
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
3584
+ val gestures: Any? get() = if (values.isNull("gestures")) null else values.get("gestures")
3585
+ val hit_slop: Any? get() = if (values.isNull("hit_slop")) null else values.get("hit_slop")
3586
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
3587
+ val accessibility_label: Any? get() = if (values.isNull("accessibility_label")) null else values.get("accessibility_label")
3588
+ val accessibility_hint: Any? get() = if (values.isNull("accessibility_hint")) null else values.get("accessibility_hint")
3589
+ val accessibility_role: Any? get() = if (values.isNull("accessibility_role")) null else values.get("accessibility_role")
3590
+ val accessible: Any? get() = if (values.isNull("accessible")) null else values.get("accessible")
3591
+ val accessibility_state: Any? get() = if (values.isNull("accessibility_state")) null else values.get("accessibility_state")
3592
+ val accessibility_live_region: Any? get() = if (values.isNull("accessibility_live_region")) null else values.get("accessibility_live_region")
3593
+ val test_id: Any? get() = if (values.isNull("test_id")) null else values.get("test_id")
3594
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
3595
+ val keys: Any? get() = if (values.isNull("keys")) null else values.get("keys")
3596
+ val revision: Int? get() = if (values.isNull("revision")) null else values.getInt("revision")
3597
+ val count: Int? get() = if (values.isNull("count")) null else values.getInt("count")
3598
+ val estimated_item_size: Double? get() = if (values.isNull("estimated_item_size")) null else values.getDouble("estimated_item_size")
3599
+ val on_bind_row: Any? get() = if (values.isNull("on_bind_row")) null else values.get("on_bind_row")
3600
+ }
3601
+
3602
+ data class WebViewProps(val values: JSONObject) {
3603
+ init {
3604
+ }
3605
+ val width: Any? get() = if (values.isNull("width")) null else values.get("width")
3606
+ val height: Any? get() = if (values.isNull("height")) null else values.get("height")
3607
+ val min_width: Any? get() = if (values.isNull("min_width")) null else values.get("min_width")
3608
+ val max_width: Any? get() = if (values.isNull("max_width")) null else values.get("max_width")
3609
+ val min_height: Any? get() = if (values.isNull("min_height")) null else values.get("min_height")
3610
+ val max_height: Any? get() = if (values.isNull("max_height")) null else values.get("max_height")
3611
+ val aspect_ratio: Double? get() = if (values.isNull("aspect_ratio")) null else values.getDouble("aspect_ratio")
3612
+ val flex: Double? get() = if (values.isNull("flex")) null else values.getDouble("flex")
3613
+ val flex_grow: Double? get() = if (values.isNull("flex_grow")) null else values.getDouble("flex_grow")
3614
+ val flex_shrink: Double? get() = if (values.isNull("flex_shrink")) null else values.getDouble("flex_shrink")
3615
+ val flex_basis: Any? get() = if (values.isNull("flex_basis")) null else values.get("flex_basis")
3616
+ val flex_direction: Any? get() = if (values.isNull("flex_direction")) null else values.get("flex_direction")
3617
+ val flex_wrap: Any? get() = if (values.isNull("flex_wrap")) null else values.get("flex_wrap")
3618
+ val justify_content: Any? get() = if (values.isNull("justify_content")) null else values.get("justify_content")
3619
+ val align_items: Any? get() = if (values.isNull("align_items")) null else values.get("align_items")
3620
+ val align_self: Any? get() = if (values.isNull("align_self")) null else values.get("align_self")
3621
+ val align_content: Any? get() = if (values.isNull("align_content")) null else values.get("align_content")
3622
+ val direction: Any? get() = if (values.isNull("direction")) null else values.get("direction")
3623
+ val display: Any? get() = if (values.isNull("display")) null else values.get("display")
3624
+ val position: Any? get() = if (values.isNull("position")) null else values.get("position")
3625
+ val top: Any? get() = if (values.isNull("top")) null else values.get("top")
3626
+ val right: Any? get() = if (values.isNull("right")) null else values.get("right")
3627
+ val bottom: Any? get() = if (values.isNull("bottom")) null else values.get("bottom")
3628
+ val left: Any? get() = if (values.isNull("left")) null else values.get("left")
3629
+ val start: Any? get() = if (values.isNull("start")) null else values.get("start")
3630
+ val end: Any? get() = if (values.isNull("end")) null else values.get("end")
3631
+ val padding: Any? get() = if (values.isNull("padding")) null else values.get("padding")
3632
+ val padding_top: Any? get() = if (values.isNull("padding_top")) null else values.get("padding_top")
3633
+ val padding_bottom: Any? get() = if (values.isNull("padding_bottom")) null else values.get("padding_bottom")
3634
+ val padding_left: Any? get() = if (values.isNull("padding_left")) null else values.get("padding_left")
3635
+ val padding_right: Any? get() = if (values.isNull("padding_right")) null else values.get("padding_right")
3636
+ val padding_start: Any? get() = if (values.isNull("padding_start")) null else values.get("padding_start")
3637
+ val padding_end: Any? get() = if (values.isNull("padding_end")) null else values.get("padding_end")
3638
+ val padding_horizontal: Any? get() = if (values.isNull("padding_horizontal")) null else values.get("padding_horizontal")
3639
+ val padding_vertical: Any? get() = if (values.isNull("padding_vertical")) null else values.get("padding_vertical")
3640
+ val margin: Any? get() = if (values.isNull("margin")) null else values.get("margin")
3641
+ val margin_top: Any? get() = if (values.isNull("margin_top")) null else values.get("margin_top")
3642
+ val margin_bottom: Any? get() = if (values.isNull("margin_bottom")) null else values.get("margin_bottom")
3643
+ val margin_left: Any? get() = if (values.isNull("margin_left")) null else values.get("margin_left")
3644
+ val margin_right: Any? get() = if (values.isNull("margin_right")) null else values.get("margin_right")
3645
+ val margin_start: Any? get() = if (values.isNull("margin_start")) null else values.get("margin_start")
3646
+ val margin_end: Any? get() = if (values.isNull("margin_end")) null else values.get("margin_end")
3647
+ val margin_horizontal: Any? get() = if (values.isNull("margin_horizontal")) null else values.get("margin_horizontal")
3648
+ val margin_vertical: Any? get() = if (values.isNull("margin_vertical")) null else values.get("margin_vertical")
3649
+ val spacing: Double? get() = if (values.isNull("spacing")) null else values.getDouble("spacing")
3650
+ val gap: Double? get() = if (values.isNull("gap")) null else values.getDouble("gap")
3651
+ val row_gap: Double? get() = if (values.isNull("row_gap")) null else values.getDouble("row_gap")
3652
+ val column_gap: Double? get() = if (values.isNull("column_gap")) null else values.getDouble("column_gap")
3653
+ val overflow: Any? get() = if (values.isNull("overflow")) null else values.get("overflow")
3654
+ val background_color: String? get() = if (values.isNull("background_color")) null else values.getString("background_color")
3655
+ val color: String? get() = if (values.isNull("color")) null else values.getString("color")
3656
+ val border_color: String? get() = if (values.isNull("border_color")) null else values.getString("border_color")
3657
+ val placeholder_color: String? get() = if (values.isNull("placeholder_color")) null else values.getString("placeholder_color")
3658
+ val tint_color: String? get() = if (values.isNull("tint_color")) null else values.getString("tint_color")
3659
+ val border_width: Double? get() = if (values.isNull("border_width")) null else values.getDouble("border_width")
3660
+ val border_radius: Double? get() = if (values.isNull("border_radius")) null else values.getDouble("border_radius")
3661
+ val border_top_left_radius: Double? get() = if (values.isNull("border_top_left_radius")) null else values.getDouble("border_top_left_radius")
3662
+ val border_top_right_radius: Double? get() = if (values.isNull("border_top_right_radius")) null else values.getDouble("border_top_right_radius")
3663
+ val border_bottom_left_radius: Double? get() = if (values.isNull("border_bottom_left_radius")) null else values.getDouble("border_bottom_left_radius")
3664
+ val border_bottom_right_radius: Double? get() = if (values.isNull("border_bottom_right_radius")) null else values.getDouble("border_bottom_right_radius")
3665
+ val border_top_width: Double? get() = if (values.isNull("border_top_width")) null else values.getDouble("border_top_width")
3666
+ val border_right_width: Double? get() = if (values.isNull("border_right_width")) null else values.getDouble("border_right_width")
3667
+ val border_bottom_width: Double? get() = if (values.isNull("border_bottom_width")) null else values.getDouble("border_bottom_width")
3668
+ val border_left_width: Double? get() = if (values.isNull("border_left_width")) null else values.getDouble("border_left_width")
3669
+ val border_top_color: String? get() = if (values.isNull("border_top_color")) null else values.getString("border_top_color")
3670
+ val border_right_color: String? get() = if (values.isNull("border_right_color")) null else values.getString("border_right_color")
3671
+ val border_bottom_color: String? get() = if (values.isNull("border_bottom_color")) null else values.getString("border_bottom_color")
3672
+ val border_left_color: String? get() = if (values.isNull("border_left_color")) null else values.getString("border_left_color")
3673
+ val font_size: Double? get() = if (values.isNull("font_size")) null else values.getDouble("font_size")
3674
+ val font_family: String? get() = if (values.isNull("font_family")) null else values.getString("font_family")
3675
+ val font_weight: Any? get() = if (values.isNull("font_weight")) null else values.get("font_weight")
3676
+ val bold: Boolean? get() = if (values.isNull("bold")) null else values.getBoolean("bold")
3677
+ val italic: Boolean? get() = if (values.isNull("italic")) null else values.getBoolean("italic")
3678
+ val text_align: Any? get() = if (values.isNull("text_align")) null else values.get("text_align")
3679
+ val text_decoration: Any? get() = if (values.isNull("text_decoration")) null else values.get("text_decoration")
3680
+ val text_transform: Any? get() = if (values.isNull("text_transform")) null else values.get("text_transform")
3681
+ val line_height: Double? get() = if (values.isNull("line_height")) null else values.getDouble("line_height")
3682
+ val letter_spacing: Double? get() = if (values.isNull("letter_spacing")) null else values.getDouble("letter_spacing")
3683
+ val max_lines: Int? get() = if (values.isNull("max_lines")) null else values.getInt("max_lines")
3684
+ val text_shadow_color: String? get() = if (values.isNull("text_shadow_color")) null else values.getString("text_shadow_color")
3685
+ val text_shadow_offset: Any? get() = if (values.isNull("text_shadow_offset")) null else values.get("text_shadow_offset")
3686
+ val text_shadow_radius: Double? get() = if (values.isNull("text_shadow_radius")) null else values.getDouble("text_shadow_radius")
3687
+ val shadow_color: String? get() = if (values.isNull("shadow_color")) null else values.getString("shadow_color")
3688
+ val shadow_offset: Any? get() = if (values.isNull("shadow_offset")) null else values.get("shadow_offset")
3689
+ val shadow_opacity: Double? get() = if (values.isNull("shadow_opacity")) null else values.getDouble("shadow_opacity")
3690
+ val shadow_radius: Double? get() = if (values.isNull("shadow_radius")) null else values.getDouble("shadow_radius")
3691
+ val elevation: Double? get() = if (values.isNull("elevation")) null else values.getDouble("elevation")
3692
+ val opacity: Double? get() = if (values.isNull("opacity")) null else values.getDouble("opacity")
3693
+ val transform: Any? get() = if (values.isNull("transform")) null else values.get("transform")
3694
+ val z_index: Int? get() = if (values.isNull("z_index")) null else values.getInt("z_index")
3695
+ val pointer_events: Any? get() = if (values.isNull("pointer_events")) null else values.get("pointer_events")
3696
+ val url: String? get() = if (values.isNull("url")) null else values.getString("url")
3697
+ val html: Any? get() = if (values.isNull("html")) null else values.get("html")
3698
+ val on_load: Any? get() = if (values.isNull("on_load")) null else values.get("on_load")
3699
+ val on_message: Any? get() = if (values.isNull("on_message")) null else values.get("on_message")
3700
+ val on_navigation_state_change: Any? get() = if (values.isNull("on_navigation_state_change")) null else values.get("on_navigation_state_change")
3701
+ val inject_javascript: Any? get() = if (values.isNull("inject_javascript")) null else values.get("inject_javascript")
3702
+ val scroll_enabled: Boolean? get() = if (values.isNull("scroll_enabled")) null else values.getBoolean("scroll_enabled")
3703
+ val ref: Any? get() = if (values.isNull("ref")) null else values.get("ref")
3704
+ val on_layout: Any? get() = if (values.isNull("on_layout")) null else values.get("on_layout")
3705
+ }