react-native-acoustic-connect-beta 18.0.7 → 18.0.9

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 (327) hide show
  1. package/Examples/SampleUI/.bundle/config +2 -0
  2. package/Examples/SampleUI/.eslintrc.js +4 -0
  3. package/Examples/SampleUI/.prettierrc.js +7 -0
  4. package/Examples/SampleUI/.watchmanconfig +1 -0
  5. package/Examples/SampleUI/App.js +1 -0
  6. package/Examples/SampleUI/Gemfile +10 -0
  7. package/Examples/SampleUI/Gemfile.lock +121 -0
  8. package/Examples/SampleUI/README.md +79 -0
  9. package/Examples/SampleUI/__tests__/App.test.tsx +17 -0
  10. package/Examples/SampleUI/android/app/build.gradle +124 -0
  11. package/Examples/SampleUI/android/app/debug.keystore +0 -0
  12. package/Examples/SampleUI/android/app/proguard-rules.pro +10 -0
  13. package/Examples/SampleUI/android/app/src/debug/AndroidManifest.xml +9 -0
  14. package/Examples/SampleUI/android/app/src/main/AndroidManifest.xml +26 -0
  15. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainActivity.kt +23 -0
  16. package/Examples/SampleUI/android/app/src/main/java/com/sampleui/MainApplication.kt +53 -0
  17. package/Examples/SampleUI/android/app/src/main/res/drawable/rn_edit_text_material.xml +37 -0
  18. package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher.png +0 -0
  19. package/Examples/SampleUI/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png +0 -0
  20. package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher.png +0 -0
  21. package/Examples/SampleUI/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png +0 -0
  22. package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png +0 -0
  23. package/Examples/SampleUI/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png +0 -0
  24. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png +0 -0
  25. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png +0 -0
  26. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png +0 -0
  27. package/Examples/SampleUI/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png +0 -0
  28. package/Examples/SampleUI/android/app/src/main/res/values/strings.xml +3 -0
  29. package/Examples/SampleUI/android/app/src/main/res/values/styles.xml +9 -0
  30. package/Examples/SampleUI/android/build.gradle +21 -0
  31. package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.jar +0 -0
  32. package/Examples/SampleUI/android/gradle/wrapper/gradle-wrapper.properties +7 -0
  33. package/Examples/SampleUI/android/gradle.properties +39 -0
  34. package/Examples/SampleUI/android/gradlew +252 -0
  35. package/Examples/SampleUI/android/gradlew.bat +94 -0
  36. package/Examples/SampleUI/android/settings.gradle +21 -0
  37. package/Examples/SampleUI/app.json +51 -0
  38. package/Examples/SampleUI/assets/fonts/Abel-Regular.ttf +0 -0
  39. package/Examples/SampleUI/assets/fonts/NotoSans-Regular.ttf +0 -0
  40. package/Examples/SampleUI/assets/images/android-icon.png +0 -0
  41. package/Examples/SampleUI/assets/images/artist-1.jpg +0 -0
  42. package/Examples/SampleUI/assets/images/artist-2.jpg +0 -0
  43. package/Examples/SampleUI/assets/images/avatar.png +0 -0
  44. package/Examples/SampleUI/assets/images/beach.jpg +0 -0
  45. package/Examples/SampleUI/assets/images/bridge.jpg +0 -0
  46. package/Examples/SampleUI/assets/images/chameleon.jpg +0 -0
  47. package/Examples/SampleUI/assets/images/city.jpg +0 -0
  48. package/Examples/SampleUI/assets/images/email-icon.png +0 -0
  49. package/Examples/SampleUI/assets/images/favorite.png +0 -0
  50. package/Examples/SampleUI/assets/images/forest.jpg +0 -0
  51. package/Examples/SampleUI/assets/images/paper-icon.png +0 -0
  52. package/Examples/SampleUI/assets/images/players-2.jpg +0 -0
  53. package/Examples/SampleUI/assets/images/players.jpg +0 -0
  54. package/Examples/SampleUI/assets/images/restaurant-1.jpg +0 -0
  55. package/Examples/SampleUI/assets/images/restaurant-2.jpg +0 -0
  56. package/Examples/SampleUI/assets/images/song-1.jpg +0 -0
  57. package/Examples/SampleUI/assets/images/song-2.jpg +0 -0
  58. package/Examples/SampleUI/assets/images/splash.png +0 -0
  59. package/Examples/SampleUI/assets/images/strawberries.jpg +0 -0
  60. package/Examples/SampleUI/assets/images/wrecked-ship.jpg +0 -0
  61. package/Examples/SampleUI/assets/styles/fonts.css +47 -0
  62. package/Examples/SampleUI/babel.config.js +22 -0
  63. package/Examples/SampleUI/index.js +9 -0
  64. package/Examples/SampleUI/ios/.xcode.env +11 -0
  65. package/Examples/SampleUI/ios/Podfile +58 -0
  66. package/Examples/SampleUI/ios/SampleUI/AppDelegate.h +7 -0
  67. package/Examples/SampleUI/ios/SampleUI/AppDelegate.mm +31 -0
  68. package/Examples/SampleUI/ios/SampleUI/Images.xcassets/AppIcon.appiconset/Contents.json +53 -0
  69. package/Examples/SampleUI/ios/SampleUI/Images.xcassets/Contents.json +6 -0
  70. package/Examples/SampleUI/ios/SampleUI/Info.plist +52 -0
  71. package/Examples/SampleUI/ios/SampleUI/LaunchScreen.storyboard +47 -0
  72. package/Examples/SampleUI/ios/SampleUI/PrivacyInfo.xcprivacy +48 -0
  73. package/Examples/SampleUI/ios/SampleUI/main.m +10 -0
  74. package/Examples/SampleUI/ios/SampleUI.xcodeproj/project.pbxproj +785 -0
  75. package/Examples/SampleUI/ios/SampleUI.xcodeproj/xcshareddata/xcschemes/SampleUI.xcscheme +88 -0
  76. package/Examples/SampleUI/ios/SampleUI.xcworkspace/contents.xcworkspacedata +10 -0
  77. package/Examples/SampleUI/ios/SampleUITests/Info.plist +24 -0
  78. package/Examples/SampleUI/ios/SampleUITests/SampleUITests.m +66 -0
  79. package/Examples/SampleUI/jest.config.js +3 -0
  80. package/Examples/SampleUI/metro.config.js +53 -0
  81. package/Examples/SampleUI/package-lock.json +17033 -0
  82. package/Examples/SampleUI/package.json +62 -0
  83. package/Examples/SampleUI/src/DrawerItems.tsx +322 -0
  84. package/Examples/SampleUI/src/ExampleList.tsx +175 -0
  85. package/Examples/SampleUI/src/Examples/ActivityIndicatorExample.tsx +73 -0
  86. package/Examples/SampleUI/src/Examples/AnimatedFABExample/AnimatedFABExample.tsx +220 -0
  87. package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFAB.tsx +70 -0
  88. package/Examples/SampleUI/src/Examples/AnimatedFABExample/CustomFABControls.tsx +146 -0
  89. package/Examples/SampleUI/src/Examples/AnimatedFABExample/index.ts +1 -0
  90. package/Examples/SampleUI/src/Examples/AppbarExample.tsx +263 -0
  91. package/Examples/SampleUI/src/Examples/AvatarExample.tsx +76 -0
  92. package/Examples/SampleUI/src/Examples/BadgeExample.tsx +97 -0
  93. package/Examples/SampleUI/src/Examples/BannerExample.tsx +152 -0
  94. package/Examples/SampleUI/src/Examples/BottomNavigationBarExample.tsx +94 -0
  95. package/Examples/SampleUI/src/Examples/BottomNavigationExample.tsx +205 -0
  96. package/Examples/SampleUI/src/Examples/ButtonExample.tsx +405 -0
  97. package/Examples/SampleUI/src/Examples/CardExample.tsx +245 -0
  98. package/Examples/SampleUI/src/Examples/CheckboxExample.tsx +87 -0
  99. package/Examples/SampleUI/src/Examples/CheckboxItemExample.tsx +72 -0
  100. package/Examples/SampleUI/src/Examples/ChipExample.tsx +432 -0
  101. package/Examples/SampleUI/src/Examples/DataTableExample.tsx +128 -0
  102. package/Examples/SampleUI/src/Examples/DialogExample.tsx +131 -0
  103. package/Examples/SampleUI/src/Examples/Dialogs/DialogTextComponent.tsx +31 -0
  104. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithCustomColors.tsx +57 -0
  105. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithDismissableBackButton.tsx +38 -0
  106. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithIcon.tsx +42 -0
  107. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLoadingIndicator.tsx +48 -0
  108. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithLongText.tsx +81 -0
  109. package/Examples/SampleUI/src/Examples/Dialogs/DialogWithRadioBtns.tsx +111 -0
  110. package/Examples/SampleUI/src/Examples/Dialogs/UndismissableDialog.tsx +30 -0
  111. package/Examples/SampleUI/src/Examples/Dialogs/index.tsx +7 -0
  112. package/Examples/SampleUI/src/Examples/DividerExample.tsx +30 -0
  113. package/Examples/SampleUI/src/Examples/FABExample.tsx +226 -0
  114. package/Examples/SampleUI/src/Examples/IconButtonExample.tsx +230 -0
  115. package/Examples/SampleUI/src/Examples/IconExample.tsx +50 -0
  116. package/Examples/SampleUI/src/Examples/ListAccordionExample.tsx +65 -0
  117. package/Examples/SampleUI/src/Examples/ListAccordionGroupExample.tsx +80 -0
  118. package/Examples/SampleUI/src/Examples/ListItemExample.tsx +310 -0
  119. package/Examples/SampleUI/src/Examples/ListSectionExample.tsx +159 -0
  120. package/Examples/SampleUI/src/Examples/MaterialBottomTabNavigatorExample.tsx +87 -0
  121. package/Examples/SampleUI/src/Examples/MenuExample.tsx +211 -0
  122. package/Examples/SampleUI/src/Examples/ProgressBarExample.tsx +142 -0
  123. package/Examples/SampleUI/src/Examples/RadioButtonExample.tsx +104 -0
  124. package/Examples/SampleUI/src/Examples/RadioButtonGroupExample.tsx +67 -0
  125. package/Examples/SampleUI/src/Examples/RadioButtonItemExample.tsx +77 -0
  126. package/Examples/SampleUI/src/Examples/SearchbarExample.tsx +249 -0
  127. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonCustomColorCheck.tsx +93 -0
  128. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDefault.tsx +49 -0
  129. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonDisabled.tsx +47 -0
  130. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselect.tsx +50 -0
  131. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectIcons.tsx +49 -0
  132. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonMultiselectRealCase.tsx +114 -0
  133. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIcons.tsx +40 -0
  134. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonOnlyIconsWithCheck.tsx +43 -0
  135. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonRealCase.tsx +97 -0
  136. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithDensity.tsx +47 -0
  137. package/Examples/SampleUI/src/Examples/SegmentedButtons/SegmentedButtonWithSelectedCheck.tsx +52 -0
  138. package/Examples/SampleUI/src/Examples/SegmentedButtons/index.ts +9 -0
  139. package/Examples/SampleUI/src/Examples/SegmentedButtonsExample.tsx +57 -0
  140. package/Examples/SampleUI/src/Examples/SnackbarExample.tsx +141 -0
  141. package/Examples/SampleUI/src/Examples/SurfaceExample.tsx +130 -0
  142. package/Examples/SampleUI/src/Examples/SwitchExample.tsx +105 -0
  143. package/Examples/SampleUI/src/Examples/TeamDetails.tsx +291 -0
  144. package/Examples/SampleUI/src/Examples/TeamsList.tsx +57 -0
  145. package/Examples/SampleUI/src/Examples/TextExample.tsx +132 -0
  146. package/Examples/SampleUI/src/Examples/TextInputExample.tsx +914 -0
  147. package/Examples/SampleUI/src/Examples/ThemeExample.tsx +41 -0
  148. package/Examples/SampleUI/src/Examples/ThemingWithReactNavigation.tsx +75 -0
  149. package/Examples/SampleUI/src/Examples/ToggleButtonExample.tsx +128 -0
  150. package/Examples/SampleUI/src/Examples/TooltipExample.tsx +191 -0
  151. package/Examples/SampleUI/src/Examples/TouchableRippleExample.tsx +37 -0
  152. package/Examples/SampleUI/src/RootNavigator.tsx +86 -0
  153. package/Examples/SampleUI/src/ScreenWrapper.tsx +67 -0
  154. package/Examples/SampleUI/src/components/ActivityIndicator.tsx +254 -0
  155. package/Examples/SampleUI/src/components/Appbar/Appbar.tsx +364 -0
  156. package/Examples/SampleUI/src/components/Appbar/AppbarAction.tsx +132 -0
  157. package/Examples/SampleUI/src/components/Appbar/AppbarBackAction.tsx +77 -0
  158. package/Examples/SampleUI/src/components/Appbar/AppbarBackIcon.tsx +52 -0
  159. package/Examples/SampleUI/src/components/Appbar/AppbarContent.tsx +249 -0
  160. package/Examples/SampleUI/src/components/Appbar/AppbarHeader.tsx +174 -0
  161. package/Examples/SampleUI/src/components/Appbar/index.ts +22 -0
  162. package/Examples/SampleUI/src/components/Appbar/utils.ts +188 -0
  163. package/Examples/SampleUI/src/components/Avatar/Avatar.tsx +8 -0
  164. package/Examples/SampleUI/src/components/Avatar/AvatarIcon.tsx +87 -0
  165. package/Examples/SampleUI/src/components/Avatar/AvatarImage.tsx +128 -0
  166. package/Examples/SampleUI/src/components/Avatar/AvatarText.tsx +127 -0
  167. package/Examples/SampleUI/src/components/Badge.tsx +138 -0
  168. package/Examples/SampleUI/src/components/Banner.tsx +302 -0
  169. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigation.tsx +643 -0
  170. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationBar.tsx +1039 -0
  171. package/Examples/SampleUI/src/components/BottomNavigation/BottomNavigationRouteScreen.tsx +31 -0
  172. package/Examples/SampleUI/src/components/BottomNavigation/utils.ts +70 -0
  173. package/Examples/SampleUI/src/components/Button/Button.tsx +503 -0
  174. package/Examples/SampleUI/src/components/Button/utils.tsx +272 -0
  175. package/Examples/SampleUI/src/components/Card/Card.tsx +373 -0
  176. package/Examples/SampleUI/src/components/Card/CardActions.tsx +74 -0
  177. package/Examples/SampleUI/src/components/Card/CardContent.tsx +99 -0
  178. package/Examples/SampleUI/src/components/Card/CardCover.tsx +96 -0
  179. package/Examples/SampleUI/src/components/Card/CardTitle.tsx +236 -0
  180. package/Examples/SampleUI/src/components/Card/utils.tsx +110 -0
  181. package/Examples/SampleUI/src/components/Checkbox/Checkbox.tsx +78 -0
  182. package/Examples/SampleUI/src/components/Checkbox/CheckboxAndroid.tsx +180 -0
  183. package/Examples/SampleUI/src/components/Checkbox/CheckboxIOS.tsx +104 -0
  184. package/Examples/SampleUI/src/components/Checkbox/CheckboxItem.tsx +236 -0
  185. package/Examples/SampleUI/src/components/Checkbox/index.ts +19 -0
  186. package/Examples/SampleUI/src/components/Checkbox/utils.ts +183 -0
  187. package/Examples/SampleUI/src/components/Chip/Chip.tsx +513 -0
  188. package/Examples/SampleUI/src/components/Chip/helpers.tsx +322 -0
  189. package/Examples/SampleUI/src/components/CrossFadeIcon.tsx +140 -0
  190. package/Examples/SampleUI/src/components/DataTable/DataTable.tsx +138 -0
  191. package/Examples/SampleUI/src/components/DataTable/DataTableCell.tsx +132 -0
  192. package/Examples/SampleUI/src/components/DataTable/DataTableHeader.tsx +82 -0
  193. package/Examples/SampleUI/src/components/DataTable/DataTablePagination.tsx +407 -0
  194. package/Examples/SampleUI/src/components/DataTable/DataTableRow.tsx +107 -0
  195. package/Examples/SampleUI/src/components/DataTable/DataTableTitle.tsx +208 -0
  196. package/Examples/SampleUI/src/components/Dialog/Dialog.tsx +191 -0
  197. package/Examples/SampleUI/src/components/Dialog/DialogActions.tsx +94 -0
  198. package/Examples/SampleUI/src/components/Dialog/DialogContent.tsx +54 -0
  199. package/Examples/SampleUI/src/components/Dialog/DialogIcon.tsx +100 -0
  200. package/Examples/SampleUI/src/components/Dialog/DialogScrollArea.tsx +88 -0
  201. package/Examples/SampleUI/src/components/Dialog/DialogTitle.tsx +94 -0
  202. package/Examples/SampleUI/src/components/Divider.tsx +102 -0
  203. package/Examples/SampleUI/src/components/Drawer/Drawer.tsx +8 -0
  204. package/Examples/SampleUI/src/components/Drawer/DrawerCollapsedItem.tsx +282 -0
  205. package/Examples/SampleUI/src/components/Drawer/DrawerItem.tsx +209 -0
  206. package/Examples/SampleUI/src/components/Drawer/DrawerSection.tsx +138 -0
  207. package/Examples/SampleUI/src/components/FAB/AnimatedFAB.tsx +619 -0
  208. package/Examples/SampleUI/src/components/FAB/FAB.tsx +371 -0
  209. package/Examples/SampleUI/src/components/FAB/FABGroup.tsx +532 -0
  210. package/Examples/SampleUI/src/components/FAB/index.ts +13 -0
  211. package/Examples/SampleUI/src/components/FAB/utils.ts +474 -0
  212. package/Examples/SampleUI/src/components/HelperText/HelperText.tsx +168 -0
  213. package/Examples/SampleUI/src/components/HelperText/utils.ts +30 -0
  214. package/Examples/SampleUI/src/components/Icon.tsx +170 -0
  215. package/Examples/SampleUI/src/components/IconButton/IconButton.tsx +234 -0
  216. package/Examples/SampleUI/src/components/IconButton/utils.ts +190 -0
  217. package/Examples/SampleUI/src/components/List/List.tsx +20 -0
  218. package/Examples/SampleUI/src/components/List/ListAccordion.tsx +391 -0
  219. package/Examples/SampleUI/src/components/List/ListAccordionGroup.tsx +88 -0
  220. package/Examples/SampleUI/src/components/List/ListIcon.tsx +79 -0
  221. package/Examples/SampleUI/src/components/List/ListImage.tsx +89 -0
  222. package/Examples/SampleUI/src/components/List/ListItem.tsx +313 -0
  223. package/Examples/SampleUI/src/components/List/ListSection.tsx +87 -0
  224. package/Examples/SampleUI/src/components/List/ListSubheader.tsx +79 -0
  225. package/Examples/SampleUI/src/components/List/utils.ts +113 -0
  226. package/Examples/SampleUI/src/components/MaterialCommunityIcon.tsx +121 -0
  227. package/Examples/SampleUI/src/components/Menu/Menu.tsx +711 -0
  228. package/Examples/SampleUI/src/components/Menu/MenuItem.tsx +257 -0
  229. package/Examples/SampleUI/src/components/Menu/utils.ts +110 -0
  230. package/Examples/SampleUI/src/components/Modal.tsx +245 -0
  231. package/Examples/SampleUI/src/components/Portal/Portal.tsx +69 -0
  232. package/Examples/SampleUI/src/components/Portal/PortalConsumer.tsx +44 -0
  233. package/Examples/SampleUI/src/components/Portal/PortalHost.tsx +143 -0
  234. package/Examples/SampleUI/src/components/Portal/PortalManager.tsx +54 -0
  235. package/Examples/SampleUI/src/components/ProgressBar.tsx +292 -0
  236. package/Examples/SampleUI/src/components/RadioButton/RadioButton.tsx +86 -0
  237. package/Examples/SampleUI/src/components/RadioButton/RadioButtonAndroid.tsx +202 -0
  238. package/Examples/SampleUI/src/components/RadioButton/RadioButtonGroup.tsx +67 -0
  239. package/Examples/SampleUI/src/components/RadioButton/RadioButtonIOS.tsx +130 -0
  240. package/Examples/SampleUI/src/components/RadioButton/RadioButtonItem.tsx +268 -0
  241. package/Examples/SampleUI/src/components/RadioButton/index.ts +22 -0
  242. package/Examples/SampleUI/src/components/RadioButton/utils.ts +37 -0
  243. package/Examples/SampleUI/src/components/Searchbar.tsx +459 -0
  244. package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtonItem.tsx +271 -0
  245. package/Examples/SampleUI/src/components/SegmentedButtons/SegmentedButtons.tsx +197 -0
  246. package/Examples/SampleUI/src/components/SegmentedButtons/utils.ts +179 -0
  247. package/Examples/SampleUI/src/components/Snackbar.tsx +430 -0
  248. package/Examples/SampleUI/src/components/Surface.tsx +376 -0
  249. package/Examples/SampleUI/src/components/Switch/Switch.tsx +108 -0
  250. package/Examples/SampleUI/src/components/Switch/utils.ts +113 -0
  251. package/Examples/SampleUI/src/components/TextInput/Addons/Outline.tsx +64 -0
  252. package/Examples/SampleUI/src/components/TextInput/Addons/Underline.tsx +78 -0
  253. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAdornment.tsx +208 -0
  254. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputAffix.tsx +212 -0
  255. package/Examples/SampleUI/src/components/TextInput/Adornment/TextInputIcon.tsx +195 -0
  256. package/Examples/SampleUI/src/components/TextInput/Adornment/enums.tsx +12 -0
  257. package/Examples/SampleUI/src/components/TextInput/Adornment/types.tsx +11 -0
  258. package/Examples/SampleUI/src/components/TextInput/Adornment/utils.ts +48 -0
  259. package/Examples/SampleUI/src/components/TextInput/Label/InputLabel.tsx +217 -0
  260. package/Examples/SampleUI/src/components/TextInput/Label/LabelBackground.tsx +100 -0
  261. package/Examples/SampleUI/src/components/TextInput/TextInput.tsx +572 -0
  262. package/Examples/SampleUI/src/components/TextInput/TextInputFlat.tsx +475 -0
  263. package/Examples/SampleUI/src/components/TextInput/TextInputOutlined.tsx +450 -0
  264. package/Examples/SampleUI/src/components/TextInput/constants.tsx +48 -0
  265. package/Examples/SampleUI/src/components/TextInput/helpers.tsx +612 -0
  266. package/Examples/SampleUI/src/components/TextInput/types.tsx +155 -0
  267. package/Examples/SampleUI/src/components/ToggleButton/ToggleButton.tsx +187 -0
  268. package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonGroup.tsx +72 -0
  269. package/Examples/SampleUI/src/components/ToggleButton/ToggleButtonRow.tsx +107 -0
  270. package/Examples/SampleUI/src/components/ToggleButton/index.ts +16 -0
  271. package/Examples/SampleUI/src/components/ToggleButton/utils.ts +26 -0
  272. package/Examples/SampleUI/src/components/Tooltip/Tooltip.tsx +249 -0
  273. package/Examples/SampleUI/src/components/Tooltip/utils.ts +129 -0
  274. package/Examples/SampleUI/src/components/TouchableRipple/Pressable.tsx +41 -0
  275. package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.native.tsx +145 -0
  276. package/Examples/SampleUI/src/components/TouchableRipple/TouchableRipple.tsx +317 -0
  277. package/Examples/SampleUI/src/components/TouchableRipple/utils.ts +66 -0
  278. package/Examples/SampleUI/src/components/Typography/AnimatedText.tsx +107 -0
  279. package/Examples/SampleUI/src/components/Typography/Text.tsx +184 -0
  280. package/Examples/SampleUI/src/components/Typography/types.tsx +5 -0
  281. package/Examples/SampleUI/src/components/Typography/v2/Caption.tsx +50 -0
  282. package/Examples/SampleUI/src/components/Typography/v2/Headline.tsx +52 -0
  283. package/Examples/SampleUI/src/components/Typography/v2/Paragraph.tsx +49 -0
  284. package/Examples/SampleUI/src/components/Typography/v2/StyledText.tsx +56 -0
  285. package/Examples/SampleUI/src/components/Typography/v2/Subheading.tsx +50 -0
  286. package/Examples/SampleUI/src/components/Typography/v2/Text.tsx +62 -0
  287. package/Examples/SampleUI/src/components/Typography/v2/Title.tsx +49 -0
  288. package/Examples/SampleUI/src/components/Typography/v2/index.ts +5 -0
  289. package/Examples/SampleUI/src/core/PaperProvider.tsx +122 -0
  290. package/Examples/SampleUI/src/core/SafeAreaProviderCompat.tsx +65 -0
  291. package/Examples/SampleUI/src/core/settings.tsx +23 -0
  292. package/Examples/SampleUI/src/core/theming.tsx +170 -0
  293. package/Examples/SampleUI/src/index.native.tsx +270 -0
  294. package/Examples/SampleUI/src/index.tsx +226 -0
  295. package/Examples/SampleUI/src/react-navigation/index.tsx +19 -0
  296. package/Examples/SampleUI/src/react-navigation/navigators/createMaterialBottomTabNavigator.tsx +72 -0
  297. package/Examples/SampleUI/src/react-navigation/types.tsx +126 -0
  298. package/Examples/SampleUI/src/react-navigation/views/MaterialBottomTabView.tsx +140 -0
  299. package/Examples/SampleUI/src/styles/__tests__/fonts.test.js +290 -0
  300. package/Examples/SampleUI/src/styles/fonts.tsx +143 -0
  301. package/Examples/SampleUI/src/styles/overlay.tsx +70 -0
  302. package/Examples/SampleUI/src/styles/shadow.tsx +109 -0
  303. package/Examples/SampleUI/src/styles/themes/index.ts +4 -0
  304. package/Examples/SampleUI/src/styles/themes/v2/DarkTheme.tsx +30 -0
  305. package/Examples/SampleUI/src/styles/themes/v2/LightTheme.tsx +30 -0
  306. package/Examples/SampleUI/src/styles/themes/v2/colors.tsx +277 -0
  307. package/Examples/SampleUI/src/styles/themes/v3/DarkTheme.tsx +66 -0
  308. package/Examples/SampleUI/src/styles/themes/v3/LightTheme.tsx +69 -0
  309. package/Examples/SampleUI/src/styles/themes/v3/tokens.tsx +230 -0
  310. package/Examples/SampleUI/src/utils/BackHandler/BackHandler.native.tsx +3 -0
  311. package/Examples/SampleUI/src/utils/BackHandler/BackHandler.tsx +11 -0
  312. package/Examples/SampleUI/src/utils/addEventListener.tsx +56 -0
  313. package/Examples/SampleUI/src/utils/forwardRef.tsx +23 -0
  314. package/Examples/SampleUI/src/utils/getContrastingColor.tsx +15 -0
  315. package/Examples/SampleUI/src/utils/hasTouchHandler.tsx +23 -0
  316. package/Examples/SampleUI/src/utils/roundLayoutSize.ts +2 -0
  317. package/Examples/SampleUI/src/utils/splitStyles.ts +60 -0
  318. package/Examples/SampleUI/src/utils/useAnimatedValue.tsx +9 -0
  319. package/Examples/SampleUI/src/utils/useAnimatedValueArray.tsx +13 -0
  320. package/Examples/SampleUI/src/utils/useIsKeyboardShown.tsx +55 -0
  321. package/Examples/SampleUI/src/utils/useLayout.tsx +29 -0
  322. package/Examples/SampleUI/src/utils/useLazyRef.tsx +11 -0
  323. package/Examples/SampleUI/tsconfig.json +3 -0
  324. package/Examples/SampleUI/utils/index.ts +1426 -0
  325. package/lib/typescript/jslib/TLTRN.d.ts +5 -5
  326. package/lib/typescript/jslib/TLTRN.d.ts.map +1 -1
  327. package/package.json +7 -2
@@ -0,0 +1,7 @@
1
+ export { default as DialogWithCustomColors } from './DialogWithCustomColors';
2
+ export { default as DialogWithLoadingIndicator } from './DialogWithLoadingIndicator';
3
+ export { default as DialogWithLongText } from './DialogWithLongText';
4
+ export { default as DialogWithRadioBtns } from './DialogWithRadioBtns';
5
+ export { default as UndismissableDialog } from './UndismissableDialog';
6
+ export { default as DialogWithIcon } from './DialogWithIcon';
7
+ export { default as DialogWithDismissableBackButton } from './DialogWithDismissableBackButton';
@@ -0,0 +1,30 @@
1
+ import * as React from 'react';
2
+ import { FlatList } from 'react-native';
3
+
4
+ import { Divider, List } from 'react-native-paper';
5
+
6
+ import { useExampleTheme } from '..';
7
+ import ScreenWrapper from '../ScreenWrapper';
8
+
9
+ const items = ['Apple', 'Banana', 'Coconut', 'Lemon', 'Mango', 'Peach'];
10
+
11
+ const DividerExample = () => {
12
+ const { colors } = useExampleTheme();
13
+
14
+ return (
15
+ <ScreenWrapper withScrollView={false}>
16
+ <FlatList
17
+ style={{ backgroundColor: colors?.background }}
18
+ renderItem={({ item }) => <List.Item title={item} />}
19
+ keyExtractor={(item) => item}
20
+ ItemSeparatorComponent={Divider}
21
+ data={items}
22
+ alwaysBounceVertical={false}
23
+ />
24
+ </ScreenWrapper>
25
+ );
26
+ };
27
+
28
+ DividerExample.title = 'Divider';
29
+
30
+ export default DividerExample;
@@ -0,0 +1,226 @@
1
+ import * as React from 'react';
2
+ import { Alert, StyleSheet, View } from 'react-native';
3
+
4
+ import { FAB, Portal, Text } from 'react-native-paper';
5
+
6
+ import { useExampleTheme } from '..';
7
+ import { isWeb } from '../../utils';
8
+ import ScreenWrapper from '../ScreenWrapper';
9
+
10
+ type FABVariant = 'primary' | 'secondary' | 'tertiary' | 'surface';
11
+ type FABSize = 'small' | 'medium' | 'large';
12
+ type FABMode = 'flat' | 'elevated';
13
+
14
+ const FABExample = () => {
15
+ const [visible, setVisible] = React.useState<boolean>(true);
16
+ const [toggleStackOnLongPress, setToggleStackOnLongPress] =
17
+ React.useState<boolean>(false);
18
+ const [open, setOpen] = React.useState<boolean>(false);
19
+ const { isV3 } = useExampleTheme();
20
+
21
+ const variants = ['primary', 'secondary', 'tertiary', 'surface'];
22
+ const sizes = ['small', 'medium', 'large'];
23
+ const modes = ['flat', 'elevated'];
24
+
25
+ return (
26
+ <ScreenWrapper style={styles.container}>
27
+ <View style={styles.column}>
28
+ <FAB
29
+ icon={visible ? 'eye-off' : 'eye'}
30
+ size="small"
31
+ style={styles.fab}
32
+ onPress={() => setVisible(!visible)}
33
+ />
34
+ </View>
35
+ {isV3 && (
36
+ <>
37
+ <View style={styles.row}>
38
+ {variants.map((variant) => (
39
+ <View style={styles.fabVariant} key={variant}>
40
+ <FAB
41
+ icon="pencil"
42
+ style={styles.fab}
43
+ onPress={() => {}}
44
+ visible={visible}
45
+ variant={variant as FABVariant}
46
+ />
47
+ {visible && <Text variant="bodyMedium">{variant}</Text>}
48
+ </View>
49
+ ))}
50
+ </View>
51
+ <View style={styles.row}>
52
+ {sizes.map((size) => (
53
+ <View style={styles.fabVariant} key={size}>
54
+ <FAB
55
+ icon="pencil"
56
+ style={styles.fab}
57
+ onPress={() => {}}
58
+ visible={visible}
59
+ size={size as FABSize}
60
+ />
61
+ {visible && <Text variant="bodyMedium">{size}</Text>}
62
+ </View>
63
+ ))}
64
+ </View>
65
+ <View style={styles.row}>
66
+ {modes.map((mode) => (
67
+ <View style={styles.fabVariant} key={mode}>
68
+ <FAB
69
+ icon="pencil"
70
+ style={styles.fab}
71
+ onPress={() => {}}
72
+ visible={visible}
73
+ mode={mode as FABMode}
74
+ />
75
+ {visible && <Text variant="bodyMedium">{mode}</Text>}
76
+ </View>
77
+ ))}
78
+ </View>
79
+ </>
80
+ )}
81
+ <View style={styles.column}>
82
+ {!isV3 && (
83
+ <>
84
+ <FAB
85
+ icon="heart"
86
+ style={styles.fab}
87
+ onPress={() => {}}
88
+ visible={visible}
89
+ />
90
+ <FAB
91
+ icon="heart"
92
+ style={styles.fab}
93
+ onPress={() => {}}
94
+ visible={visible}
95
+ />
96
+ </>
97
+ )}
98
+ <FAB
99
+ icon="map"
100
+ style={styles.fab}
101
+ customSize={64}
102
+ onPress={() => {}}
103
+ visible={visible}
104
+ />
105
+ <FAB
106
+ icon="map"
107
+ label="Extended FAB with custom size"
108
+ style={styles.fab}
109
+ customSize={64}
110
+ onPress={() => {}}
111
+ visible={visible}
112
+ />
113
+ <FAB
114
+ icon="check"
115
+ label="Extended FAB"
116
+ style={styles.fab}
117
+ onPress={() => {}}
118
+ visible={visible}
119
+ />
120
+ <FAB
121
+ icon="cancel"
122
+ label="Disabled FAB"
123
+ style={styles.fab}
124
+ onPress={() => {}}
125
+ visible={visible}
126
+ disabled
127
+ />
128
+ <FAB
129
+ icon="format-letter-case"
130
+ label="Mixed case"
131
+ style={styles.fab}
132
+ onPress={() => {}}
133
+ visible={visible}
134
+ uppercase
135
+ />
136
+ <FAB
137
+ icon="cancel"
138
+ label="Loading FAB"
139
+ style={styles.fab}
140
+ onPress={() => {}}
141
+ visible={visible}
142
+ loading
143
+ />
144
+ <Portal>
145
+ <FAB.Group
146
+ open={open}
147
+ icon={open ? 'calendar-today' : 'plus'}
148
+ accessibilityLabel="Calendar FAB"
149
+ toggleStackOnLongPress={toggleStackOnLongPress}
150
+ actions={[
151
+ { icon: 'plus', onPress: () => {} },
152
+ { icon: 'star', label: 'Star', onPress: () => {} },
153
+ { icon: 'email', label: 'Email', onPress: () => {} },
154
+ {
155
+ icon: 'bell',
156
+ label: 'Remind',
157
+ onPress: () => {},
158
+ size: isV3 ? 'small' : 'medium',
159
+ },
160
+ {
161
+ icon: toggleStackOnLongPress
162
+ ? 'gesture-tap'
163
+ : 'gesture-tap-hold',
164
+ label: toggleStackOnLongPress
165
+ ? 'Toggle on Press'
166
+ : 'Toggle on Long Press',
167
+ onPress: () => {
168
+ setToggleStackOnLongPress(!toggleStackOnLongPress);
169
+ },
170
+ },
171
+ ]}
172
+ enableLongPressWhenStackOpened
173
+ onStateChange={({ open }: { open: boolean }) => setOpen(open)}
174
+ onPress={() => {
175
+ if (toggleStackOnLongPress) {
176
+ isWeb ? alert('Fab is Pressed') : Alert.alert('Fab is Pressed');
177
+ // do something on press when the speed dial is closed
178
+ } else if (open) {
179
+ isWeb ? alert('Fab is Pressed') : Alert.alert('Fab is Pressed');
180
+ // do something if the speed dial is open
181
+ }
182
+ }}
183
+ onLongPress={() => {
184
+ if (!toggleStackOnLongPress || open) {
185
+ isWeb
186
+ ? alert('Fab is Long Pressed')
187
+ : Alert.alert('Fab is Long Pressed');
188
+ // do something if the speed dial is open
189
+ }
190
+ }}
191
+ visible={visible}
192
+ />
193
+ </Portal>
194
+ </View>
195
+ </ScreenWrapper>
196
+ );
197
+ };
198
+
199
+ FABExample.title = 'Floating Action Button';
200
+
201
+ const styles = StyleSheet.create({
202
+ container: {
203
+ padding: 4,
204
+ },
205
+ row: {
206
+ marginBottom: 8,
207
+ flexDirection: 'row',
208
+ justifyContent: 'center',
209
+ alignItems: 'center',
210
+ },
211
+ column: {
212
+ justifyContent: 'center',
213
+ alignItems: 'center',
214
+ marginBottom: 8,
215
+ },
216
+ fab: {
217
+ margin: 8,
218
+ },
219
+ fabVariant: {
220
+ flex: 1,
221
+ justifyContent: 'space-between',
222
+ alignItems: 'center',
223
+ },
224
+ });
225
+
226
+ export default FABExample;
@@ -0,0 +1,230 @@
1
+ import * as React from 'react';
2
+ import { StyleSheet, View } from 'react-native';
3
+
4
+ import { IconButton, List, MD2Colors, MD3Colors } from 'react-native-paper';
5
+
6
+ import { useExampleTheme } from '..';
7
+ import ScreenWrapper from '../ScreenWrapper';
8
+
9
+ const ButtonExample = () => {
10
+ const { isV3 } = useExampleTheme();
11
+ if (!isV3) {
12
+ return (
13
+ <ScreenWrapper contentContainerStyle={styles.v2Container}>
14
+ <IconButton icon="camera" size={24} onPress={() => {}} />
15
+ <IconButton
16
+ icon="lock"
17
+ size={24}
18
+ iconColor={MD2Colors.green500}
19
+ onPress={() => {}}
20
+ />
21
+ <IconButton icon="" size={24} onPress={() => {}} loading />
22
+ <IconButton icon="camera" size={36} onPress={() => {}} />
23
+ <IconButton
24
+ icon="lock"
25
+ size={36}
26
+ onPress={() => {}}
27
+ style={{ backgroundColor: MD2Colors.lightGreen200 }}
28
+ />
29
+ <IconButton icon="heart" size={60} onPress={() => {}} />
30
+ </ScreenWrapper>
31
+ );
32
+ }
33
+
34
+ return (
35
+ <ScreenWrapper contentContainerStyle={styles.v3Container}>
36
+ <List.Section title="Default">
37
+ <View style={styles.row}>
38
+ <IconButton icon="camera" size={24} onPress={() => {}} />
39
+ <IconButton icon="camera" selected size={24} onPress={() => {}} />
40
+ <IconButton icon="camera" disabled size={24} onPress={() => {}} />
41
+ <IconButton icon="camera" size={24} onPress={() => {}} loading />
42
+ </View>
43
+ </List.Section>
44
+
45
+ <List.Section title="Contained">
46
+ <View style={styles.row}>
47
+ <IconButton
48
+ icon="camera"
49
+ mode="contained"
50
+ size={24}
51
+ onPress={() => {}}
52
+ />
53
+ <IconButton
54
+ icon="camera"
55
+ mode="contained"
56
+ selected
57
+ size={24}
58
+ onPress={() => {}}
59
+ />
60
+ <IconButton
61
+ icon="camera"
62
+ mode="contained"
63
+ disabled
64
+ size={24}
65
+ onPress={() => {}}
66
+ />
67
+ <IconButton
68
+ icon=""
69
+ mode="contained"
70
+ selected
71
+ loading
72
+ size={24}
73
+ onPress={() => {}}
74
+ />
75
+ </View>
76
+ </List.Section>
77
+
78
+ <List.Section title="Contained-tonal">
79
+ <View style={styles.row}>
80
+ <IconButton
81
+ icon="camera"
82
+ mode="contained-tonal"
83
+ size={24}
84
+ onPress={() => {}}
85
+ />
86
+ <IconButton
87
+ icon="camera"
88
+ selected
89
+ mode="contained-tonal"
90
+ size={24}
91
+ onPress={() => {}}
92
+ />
93
+ <IconButton
94
+ icon="camera"
95
+ mode="contained-tonal"
96
+ disabled
97
+ size={24}
98
+ onPress={() => {}}
99
+ />
100
+ <IconButton
101
+ icon=""
102
+ mode="contained-tonal"
103
+ disabled
104
+ size={24}
105
+ onPress={() => {}}
106
+ loading
107
+ />
108
+ </View>
109
+ </List.Section>
110
+
111
+ <List.Section title="Outlined">
112
+ <View style={styles.row}>
113
+ <IconButton
114
+ icon="camera-outline"
115
+ mode="outlined"
116
+ size={24}
117
+ onPress={() => {}}
118
+ />
119
+ <IconButton
120
+ selected
121
+ icon="camera"
122
+ mode="outlined"
123
+ size={24}
124
+ onPress={() => {}}
125
+ />
126
+ <IconButton
127
+ icon="camera"
128
+ mode="outlined"
129
+ disabled
130
+ size={24}
131
+ onPress={() => {}}
132
+ />
133
+ <IconButton
134
+ icon=""
135
+ mode="outlined"
136
+ disabled
137
+ size={24}
138
+ onPress={() => {}}
139
+ loading
140
+ />
141
+ </View>
142
+ </List.Section>
143
+
144
+ <List.Section title="Custom">
145
+ <View style={styles.row}>
146
+ <IconButton
147
+ icon="lock"
148
+ size={24}
149
+ iconColor={MD3Colors.tertiary50}
150
+ onPress={() => {}}
151
+ />
152
+ <IconButton
153
+ icon="eye"
154
+ mode="contained"
155
+ style={styles.square}
156
+ size={24}
157
+ iconColor={MD3Colors.tertiary50}
158
+ onPress={() => {}}
159
+ />
160
+ <IconButton
161
+ icon="eye"
162
+ mode="contained"
163
+ style={styles.slightlyRounded}
164
+ size={24}
165
+ contentStyle={{ padding: 8 }}
166
+ iconColor={MD3Colors.tertiary50}
167
+ onPress={() => {}}
168
+ />
169
+ <IconButton
170
+ icon="heart"
171
+ mode="contained-tonal"
172
+ style={styles.differentBorderRadius}
173
+ size={24}
174
+ iconColor={MD3Colors.tertiary50}
175
+ onPress={() => {}}
176
+ />
177
+ <IconButton
178
+ icon="heart"
179
+ mode="outlined"
180
+ style={styles.differentBorderRadius}
181
+ size={24}
182
+ iconColor={MD3Colors.tertiary50}
183
+ onPress={() => {}}
184
+ />
185
+ <IconButton icon="camera" size={36} onPress={() => {}} />
186
+ <IconButton
187
+ icon="lock"
188
+ size={36}
189
+ onPress={() => {}}
190
+ containerColor={MD3Colors.tertiary60}
191
+ />
192
+ <IconButton icon="heart" size={60} onPress={() => {}} />
193
+ <IconButton icon="" size={60} onPress={() => {}} loading />
194
+ </View>
195
+ </List.Section>
196
+ </ScreenWrapper>
197
+ );
198
+ };
199
+
200
+ ButtonExample.title = 'Icon Button';
201
+
202
+ const styles = StyleSheet.create({
203
+ v2Container: {
204
+ flexDirection: 'row',
205
+ padding: 8,
206
+ },
207
+ v3Container: {
208
+ flexDirection: 'column',
209
+ },
210
+ row: {
211
+ flexDirection: 'row',
212
+ paddingHorizontal: 12,
213
+ },
214
+ square: {
215
+ borderRadius: 0,
216
+ },
217
+ slightlyRounded: {
218
+ borderRadius: 4,
219
+ width: 48,
220
+ height: 48,
221
+ },
222
+ differentBorderRadius: {
223
+ borderTopLeftRadius: 2,
224
+ borderTopRightRadius: 4,
225
+ borderBottomLeftRadius: 8,
226
+ borderBottomRightRadius: 6,
227
+ },
228
+ });
229
+
230
+ export default ButtonExample;
@@ -0,0 +1,50 @@
1
+ import * as React from 'react';
2
+ import { StyleSheet, View, Image } from 'react-native';
3
+
4
+ import { Icon, List } from 'react-native-paper';
5
+
6
+ import ScreenWrapper from '../ScreenWrapper';
7
+
8
+ const AssetIcon = ({ size, testID }: { size: number; testID: string }) => (
9
+ <Image
10
+ accessibilityIgnoresInvertColors
11
+ source={require('../../assets/images/paper-icon.png')}
12
+ style={{ width: size, height: size }}
13
+ testID={testID}
14
+ />
15
+ );
16
+
17
+ const IconExample = () => {
18
+ return (
19
+ <ScreenWrapper>
20
+ <List.Section title="Default icon (MaterialCommunityIcon)">
21
+ <View style={styles.row}>
22
+ <Icon source="camera" size={24} />
23
+ </View>
24
+ </List.Section>
25
+ <List.Section title="Image icon">
26
+ <View style={styles.row}>
27
+ <Icon source={{ uri: 'https://picsum.photos/700' }} size={48} />
28
+ </View>
29
+ </List.Section>
30
+ <List.Section title="Render function icon">
31
+ <View style={styles.row}>
32
+ <Icon source={AssetIcon} size={48} />
33
+ </View>
34
+ </List.Section>
35
+ </ScreenWrapper>
36
+ );
37
+ };
38
+
39
+ IconExample.title = 'Icon';
40
+
41
+ const styles = StyleSheet.create({
42
+ row: {
43
+ flexDirection: 'row',
44
+ flexWrap: 'wrap',
45
+ alignItems: 'center',
46
+ marginLeft: 16,
47
+ },
48
+ });
49
+
50
+ export default IconExample;
@@ -0,0 +1,65 @@
1
+ import * as React from 'react';
2
+
3
+ import { List, Divider } from 'react-native-paper';
4
+
5
+ import ScreenWrapper from '../ScreenWrapper';
6
+
7
+ const ListAccordionExample = () => {
8
+ const [expanded, setExpanded] = React.useState<boolean>(true);
9
+
10
+ const _handlePress = () => {
11
+ setExpanded(!expanded);
12
+ };
13
+
14
+ return (
15
+ <ScreenWrapper>
16
+ <List.Section title="Expandable list item">
17
+ <List.Accordion
18
+ left={(props) => <List.Icon {...props} icon="folder" />}
19
+ title="Expandable list item"
20
+ >
21
+ <List.Item title="List item 1" />
22
+ <List.Item title="List item 2" />
23
+ </List.Accordion>
24
+ <List.Accordion
25
+ left={(props) => <List.Icon {...props} icon="folder" />}
26
+ title="Start expanded"
27
+ expanded={expanded}
28
+ onPress={_handlePress}
29
+ >
30
+ <List.Item title="List item 1" />
31
+ </List.Accordion>
32
+ </List.Section>
33
+ <Divider />
34
+ <List.Section title="Expandable & multiline list item">
35
+ <List.Accordion
36
+ title="Expandable list item"
37
+ description="Describes the expandable list item"
38
+ >
39
+ <List.Item title="List item 1" />
40
+ <List.Item title="List item 2" />
41
+ </List.Accordion>
42
+ </List.Section>
43
+ <Divider />
44
+ <List.Section title="Expandable list with icons">
45
+ <List.Accordion
46
+ left={(props) => <List.Icon {...props} icon="star" />}
47
+ title="Accordion item 1"
48
+ >
49
+ <List.Item
50
+ left={(props) => <List.Icon {...props} icon="thumb-up" />}
51
+ title="List item 1"
52
+ />
53
+ <List.Item
54
+ left={(props) => <List.Icon {...props} icon="thumb-down" />}
55
+ title="List item 2"
56
+ />
57
+ </List.Accordion>
58
+ </List.Section>
59
+ </ScreenWrapper>
60
+ );
61
+ };
62
+
63
+ ListAccordionExample.title = 'List.Accordion';
64
+
65
+ export default ListAccordionExample;
@@ -0,0 +1,80 @@
1
+ import * as React from 'react';
2
+
3
+ import { List } from 'react-native-paper';
4
+
5
+ import ScreenWrapper from '../ScreenWrapper';
6
+
7
+ type State = string | number | undefined;
8
+
9
+ const ListAccordionGroupExample = () => {
10
+ const [expandedId, setExpandedId] = React.useState<State>(undefined);
11
+
12
+ const _onAccordionPress = (newExpandedId: string | number) =>
13
+ expandedId === newExpandedId
14
+ ? setExpandedId(undefined)
15
+ : setExpandedId(newExpandedId);
16
+
17
+ return (
18
+ <ScreenWrapper>
19
+ <List.AccordionGroup>
20
+ <List.Section title="Uncontrolled Accordion Group example">
21
+ <List.Accordion
22
+ left={(props) => <List.Icon {...props} icon="folder" />}
23
+ title="Expandable list item"
24
+ id="1"
25
+ >
26
+ <List.Item title="List item 1" />
27
+ <List.Item title="List item 2" />
28
+ </List.Accordion>
29
+ <List.Accordion
30
+ left={(props) => <List.Icon {...props} icon="folder" />}
31
+ title="Expandable list item 2"
32
+ id="2"
33
+ >
34
+ <List.Item title="List item 1" />
35
+ </List.Accordion>
36
+ <List.Accordion
37
+ left={(props) => <List.Icon {...props} icon="folder" />}
38
+ title="Expandable list item 2"
39
+ id="3"
40
+ >
41
+ <List.Item title="Another item" />
42
+ </List.Accordion>
43
+ </List.Section>
44
+ </List.AccordionGroup>
45
+ <List.AccordionGroup
46
+ expandedId={expandedId}
47
+ onAccordionPress={_onAccordionPress}
48
+ >
49
+ <List.Section title="Controlled Accordion Group example">
50
+ <List.Accordion
51
+ left={(props) => <List.Icon {...props} icon="folder" />}
52
+ title="Expandable list item"
53
+ id="1"
54
+ >
55
+ <List.Item title="List item 1" />
56
+ <List.Item title="List item 2" />
57
+ </List.Accordion>
58
+ <List.Accordion
59
+ left={(props) => <List.Icon {...props} icon="folder" />}
60
+ title="Expandable list item 2"
61
+ id="2"
62
+ >
63
+ <List.Item title="List item 1" />
64
+ </List.Accordion>
65
+ <List.Accordion
66
+ left={(props) => <List.Icon {...props} icon="folder" />}
67
+ title="Expandable list item 2"
68
+ id="3"
69
+ >
70
+ <List.Item title="Another item" />
71
+ </List.Accordion>
72
+ </List.Section>
73
+ </List.AccordionGroup>
74
+ </ScreenWrapper>
75
+ );
76
+ };
77
+
78
+ ListAccordionGroupExample.title = 'List.AccordionGroup';
79
+
80
+ export default ListAccordionGroupExample;