├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github ├── FUNDING.yml ├── ISSUE_TEMPLATE │ ├── bug_report.yml │ ├── config.yml │ └── feature-request.md ├── PULL_REQUEST_TEMPLATE.md ├── actions │ └── install │ │ └── action.yml ├── release.yml └── workflows │ ├── bleeding-edge-dist-PR.yml │ ├── bleeding-edge-dist.yml │ ├── ci-checks.yml │ ├── docs.yml │ ├── expo-preview-PR.yml │ ├── expo.yml │ └── upgrade-expo-sdk.yml ├── .gitignore ├── .husky └── pre-commit ├── .prettierignore ├── .prettierrc ├── .yarn └── releases │ └── yarn-3.2.4.cjs ├── .yarnrc.yml ├── CHANGELOG.old.md ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── codecov.yml ├── example ├── .eslintignore ├── .eslintrc ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .watchmanconfig ├── App.tsx ├── README.md ├── app.json ├── app.web-build.json ├── assets │ ├── fonts │ │ ├── Georgia.ttf │ │ ├── Montserrat-Bold.ttf │ │ ├── Montserrat-Light.ttf │ │ ├── Montserrat-Regular.ttf │ │ ├── Ubuntu-Bold.ttf │ │ ├── Ubuntu-Light-Italic.ttf │ │ └── Ubuntu-Light.ttf │ ├── icons │ │ ├── icon.png │ │ └── loading.png │ ├── images │ │ ├── avatar1.jpg │ │ ├── bg_screen1.jpg │ │ ├── bg_screen2.jpg │ │ ├── bg_screen3.jpg │ │ ├── bg_screen4.jpg │ │ ├── user-cool.png │ │ ├── user-hp.png │ │ ├── user-student.png │ │ ├── wallpaper_1.jpg │ │ ├── wallpaper_2.jpg │ │ ├── wallpaper_3.jpg │ │ └── wallpaper_4.jpg │ └── mocks │ │ ├── 4e2c606885b9fb2d8aea70827e4949bf.jpg │ │ ├── Android-N-new-settings-ui-mockup.jpg │ │ ├── beautiful-list-ui-for-mobile-app-5.jpg │ │ └── iOS-10-vs-iOS-11-Settings.jpeg ├── babel.config.js ├── eas.json ├── index.js ├── metro.config.js ├── package.json ├── src │ ├── components │ │ ├── AppLoading.ts │ │ ├── AppLoading.web.tsx │ │ ├── LinearGradient.ts │ │ └── header.tsx │ ├── config │ │ ├── colors.ts │ │ ├── fonts.ts │ │ ├── socialColors.ts │ │ └── stack.ts │ ├── helpers │ │ ├── AssetsCaching.tsx │ │ ├── AssetsCaching.web.tsx │ │ ├── ThemeReducer.tsx │ │ ├── vector-fonts.ts │ │ └── vector-fonts.web.ts │ ├── images │ │ ├── logo.png │ │ ├── rating.png │ │ ├── shirt.png │ │ └── water.png │ ├── navigation │ │ ├── DrawerNavigator.tsx │ │ └── RootNavigator.tsx │ └── views │ │ ├── Divider.tsx │ │ ├── avatars.tsx │ │ ├── badge.tsx │ │ ├── bottomsheet.tsx │ │ ├── buttons.tsx │ │ ├── cards.tsx │ │ ├── checkbox.tsx │ │ ├── chips.tsx │ │ ├── dialogs.tsx │ │ ├── fab.tsx │ │ ├── fonts.tsx │ │ ├── image.tsx │ │ ├── inputs.tsx │ │ ├── linearProgress.tsx │ │ ├── lists │ │ ├── content.tsx │ │ └── index.tsx │ │ ├── lists2.tsx │ │ ├── login │ │ ├── index.tsx │ │ ├── screen2.tsx │ │ └── screen3.tsx │ │ ├── overlay.tsx │ │ ├── pricing.tsx │ │ ├── profile.tsx │ │ ├── ratings.tsx │ │ ├── settings.tsx │ │ ├── skeleton.tsx │ │ ├── sliders.tsx │ │ ├── social_icons.tsx │ │ ├── speedDial.tsx │ │ ├── tabs.tsx │ │ ├── text.tsx │ │ ├── theme.tsx │ │ ├── tiles.tsx │ │ ├── tooltip.tsx │ │ └── whatsappClone.tsx ├── tsconfig.json ├── web │ ├── favicon.png │ ├── index.html │ └── serve.json └── webpack.config.js ├── lerna.json ├── package.json ├── packages ├── base │ ├── .ci │ │ ├── setupTests.ts │ │ └── testHelper.tsx │ ├── .docgenignore │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── src │ │ ├── AirbnbRating │ │ │ ├── AirbnbRating.tsx │ │ │ └── index.tsx │ │ ├── Avatar │ │ │ ├── Avatar.Accessory.tsx │ │ │ ├── Avatar.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Accessory.test.tsx │ │ │ │ ├── Avatar.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── Accessory.test.tsx.snap │ │ │ │ │ └── Avatar.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Badge │ │ │ ├── Badge.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Badge.test.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ └── Badge.test.tsx.snap │ │ │ │ └── withBadge.test.tsx │ │ │ ├── index.tsx │ │ │ └── withBadge.tsx │ │ ├── BottomSheet │ │ │ ├── BottomSheet.tsx │ │ │ ├── __tests__ │ │ │ │ ├── BottomSheet.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── BottomSheet.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Button │ │ │ ├── Button.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Button.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Button.test.tsx.snap │ │ │ └── index.tsx │ │ ├── ButtonGroup │ │ │ ├── ButtonGroup.tsx │ │ │ ├── __tests__ │ │ │ │ ├── ButtonGroup.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ButtonGroup.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Card │ │ │ ├── Card.Divider.tsx │ │ │ ├── Card.FeaturedSubtitle.tsx │ │ │ ├── Card.FeaturedTitle.tsx │ │ │ ├── Card.Image.tsx │ │ │ ├── Card.Title.tsx │ │ │ ├── Card.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Card.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Card.test.tsx.snap │ │ │ └── index.tsx │ │ ├── CheckBox │ │ │ ├── CheckBox.tsx │ │ │ ├── __tests__ │ │ │ │ ├── CheckBox.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── CheckBox.test.tsx.snap │ │ │ ├── components │ │ │ │ └── CheckBoxIcon.tsx │ │ │ └── index.tsx │ │ ├── Chip │ │ │ ├── Chip.tsx │ │ │ ├── __tests__ │ │ │ │ └── Chip.test.tsx │ │ │ └── index.tsx │ │ ├── Dialog │ │ │ ├── Dialog.Actions.tsx │ │ │ ├── Dialog.Button.tsx │ │ │ ├── Dialog.Loading.tsx │ │ │ ├── Dialog.Title.tsx │ │ │ ├── Dialog.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Dialog.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Dialog.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Divider │ │ │ ├── Divider.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Divider.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Divider.test.tsx.snap │ │ │ └── index.tsx │ │ ├── FAB │ │ │ ├── FAB.tsx │ │ │ ├── __tests__ │ │ │ │ ├── FAB.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── FAB.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Header │ │ │ ├── Header.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Header.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Header.test.tsx.snap │ │ │ ├── components │ │ │ │ ├── HeaderChildren.tsx │ │ │ │ └── HeaderIcon.tsx │ │ │ └── index.tsx │ │ ├── Icon │ │ │ ├── Icon.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Icon.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Icon.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Image │ │ │ ├── Image.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Image.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Image.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Input │ │ │ ├── Input.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Input.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Input.test.tsx.snap │ │ │ └── index.tsx │ │ ├── LinearProgress │ │ │ ├── LinearProgress.tsx │ │ │ ├── __tests__ │ │ │ │ ├── LinearProgress.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── LinearProgress.test.tsx.snap │ │ │ └── index.tsx │ │ ├── ListItem │ │ │ ├── ListItem.Accordion.tsx │ │ │ ├── ListItem.ButtonGroup.tsx │ │ │ ├── ListItem.CheckBox.tsx │ │ │ ├── ListItem.Chevron.tsx │ │ │ ├── ListItem.Content.tsx │ │ │ ├── ListItem.Input.tsx │ │ │ ├── ListItem.Subtitle.tsx │ │ │ ├── ListItem.Swipeable.tsx │ │ │ ├── ListItem.Title.tsx │ │ │ ├── ListItem.tsx │ │ │ ├── __tests__ │ │ │ │ ├── ListItem.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── ListItem.test.tsx.snap │ │ │ ├── components │ │ │ │ └── PadView.tsx │ │ │ └── index.tsx │ │ ├── Overlay │ │ │ ├── Overlay.tsx │ │ │ ├── __tests__ │ │ │ │ └── Overlay.test.tsx │ │ │ └── index.tsx │ │ ├── PricingCard │ │ │ ├── PricingCard.tsx │ │ │ ├── __tests__ │ │ │ │ ├── PricingCard.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── PricingCard.test.tsx.snap │ │ │ ├── components │ │ │ │ └── PricingButton.tsx │ │ │ └── index.tsx │ │ ├── Rating │ │ │ ├── Rating.tsx │ │ │ └── index.tsx │ │ ├── SearchBar │ │ │ ├── SearchBar-android.tsx │ │ │ ├── SearchBar-default.tsx │ │ │ ├── SearchBar-ios.tsx │ │ │ ├── SearchBar.tsx │ │ │ ├── __tests__ │ │ │ │ ├── SearchBar-android.test.tsx │ │ │ │ ├── SearchBar-default.test.tsx │ │ │ │ ├── SearchBar-ios.test.tsx │ │ │ │ ├── SearchBar.test.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── SearchBar-android.test.tsx.snap │ │ │ │ │ ├── SearchBar-default.test.tsx.snap │ │ │ │ │ └── SearchBar.test.tsx.snap │ │ │ │ └── common.tsx │ │ │ ├── index.tsx │ │ │ └── types.tsx │ │ ├── Skeleton │ │ │ ├── Skeleton.tsx │ │ │ ├── __tests__ │ │ │ │ └── Skeleton.test.tsx │ │ │ └── index.tsx │ │ ├── Slider │ │ │ ├── Slider.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Slider.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Slider.test.tsx.snap │ │ │ ├── components │ │ │ │ ├── Rect.tsx │ │ │ │ └── SliderThumb.tsx │ │ │ └── index.tsx │ │ ├── SocialIcon │ │ │ ├── SocialIcon.tsx │ │ │ ├── __tests__ │ │ │ │ └── SocialIcon.test.tsx │ │ │ └── index.tsx │ │ ├── SpeedDial │ │ │ ├── SpeedDial.Action.tsx │ │ │ ├── SpeedDial.tsx │ │ │ ├── __tests__ │ │ │ │ ├── SpeedDial.Action.test.tsx │ │ │ │ ├── SpeedDial.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── SpeedDial.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Switch │ │ │ ├── Switch.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Switch.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ └── Switch.test.tsx.snap │ │ │ └── index.tsx │ │ ├── Tab │ │ │ ├── Tab.Item.tsx │ │ │ ├── Tab.tsx │ │ │ ├── __tests__ │ │ │ │ └── Tab.test.tsx │ │ │ └── index.tsx │ │ ├── TabView │ │ │ ├── TabView.Item.tsx │ │ │ ├── TabView.tsx │ │ │ ├── __tests__ │ │ │ │ └── TabView.test.tsx │ │ │ └── index.tsx │ │ ├── Text │ │ │ ├── Text.tsx │ │ │ ├── __tests__ │ │ │ │ └── Text.test.tsx │ │ │ └── index.tsx │ │ ├── Tile │ │ │ ├── Tile.tsx │ │ │ ├── __tests__ │ │ │ │ ├── FeaturedTile.test.tsx │ │ │ │ ├── Tile.test.tsx │ │ │ │ └── __snapshots__ │ │ │ │ │ ├── FeaturedTile.test.tsx.snap │ │ │ │ │ └── Tile.test.tsx.snap │ │ │ ├── components │ │ │ │ └── FeaturedTile.tsx │ │ │ └── index.tsx │ │ ├── Tooltip │ │ │ ├── Tooltip.tsx │ │ │ ├── __tests__ │ │ │ │ ├── Tooltip.test.tsx │ │ │ │ ├── Triangle.test.tsx │ │ │ │ ├── __snapshots__ │ │ │ │ │ ├── Tooltip.test.tsx.snap │ │ │ │ │ └── Triangle.test.tsx.snap │ │ │ │ └── getTooltipCoordinate.test.tsx │ │ │ ├── components │ │ │ │ └── Triangle.tsx │ │ │ ├── helpers │ │ │ │ ├── getTooltipCoordinate.tsx │ │ │ │ └── getTooltipStyle.tsx │ │ │ └── index.tsx │ │ ├── helpers │ │ │ ├── BackgroundImage.tsx │ │ │ ├── InlinePressableProps.tsx │ │ │ ├── __tests__ │ │ │ │ └── colors.test.tsx │ │ │ ├── colors.ts │ │ │ ├── fonts.tsx │ │ │ ├── getIconStyle.tsx │ │ │ ├── getIconType.tsx │ │ │ ├── index.tsx │ │ │ ├── makeStyles.ts │ │ │ ├── normalizeText.tsx │ │ │ └── renderNode.tsx │ │ └── index.ts │ └── tsconfig.json └── themed │ ├── .ci │ ├── setupTests.ts │ └── testHelper.tsx │ ├── .docgenignore │ ├── .gitignore │ ├── CHANGELOG.md │ ├── README.md │ ├── babel.config.js │ ├── package.json │ ├── src │ ├── AirbnbRating │ │ └── index.tsx │ ├── Avatar │ │ ├── __tests__ │ │ │ └── Avatar.test.tsx │ │ └── index.tsx │ ├── Badge │ │ ├── __tests__ │ │ │ ├── Badge.test.tsx │ │ │ └── withBadge.test.tsx │ │ └── index.tsx │ ├── BottomSheet │ │ ├── __tests__ │ │ │ └── BottomSheet.test.tsx │ │ └── index.tsx │ ├── Button │ │ ├── __tests__ │ │ │ └── Button.test.tsx │ │ └── index.tsx │ ├── ButtonGroup │ │ ├── __tests__ │ │ │ └── ButtonGroup.test.tsx │ │ └── index.tsx │ ├── Card │ │ ├── __tests__ │ │ │ └── Card.test.tsx │ │ └── index.tsx │ ├── CheckBox │ │ ├── __tests__ │ │ │ └── CheckBox.test.tsx │ │ └── index.tsx │ ├── Chip │ │ ├── __tests__ │ │ │ └── Chip.test.tsx │ │ └── index.tsx │ ├── Dialog │ │ ├── __tests__ │ │ │ └── Dialog.test.tsx │ │ └── index.tsx │ ├── Divider │ │ ├── __tests__ │ │ │ └── Divider.test.tsx │ │ └── index.tsx │ ├── FAB │ │ ├── __tests__ │ │ │ └── FAB.test.tsx │ │ └── index.tsx │ ├── Header │ │ ├── __tests__ │ │ │ └── Header.test.tsx │ │ └── index.tsx │ ├── Icon │ │ ├── __tests__ │ │ │ └── Icon.test.tsx │ │ └── index.tsx │ ├── Image │ │ ├── __tests__ │ │ │ └── Image.test.tsx │ │ └── index.tsx │ ├── Input │ │ ├── __tests__ │ │ │ └── Input.test.tsx │ │ └── index.tsx │ ├── LinearProgress │ │ ├── __tests__ │ │ │ └── LinearProgress.test.tsx │ │ └── index.tsx │ ├── ListItem │ │ ├── __tests__ │ │ │ └── ListItem.test.tsx │ │ └── index.tsx │ ├── Overlay │ │ ├── __tests__ │ │ │ └── Overlay.test.tsx │ │ └── index.tsx │ ├── PricingCard │ │ ├── __tests__ │ │ │ └── PricingCard.test.tsx │ │ └── index.tsx │ ├── Rating │ │ └── index.tsx │ ├── SearchBar │ │ ├── __tests__ │ │ │ ├── SearchBar.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── SearchBar.test.tsx.snap │ │ └── index.tsx │ ├── Skeleton │ │ ├── __tests__ │ │ │ └── Skeleton.test.tsx │ │ └── index.tsx │ ├── Slider │ │ ├── __tests__ │ │ │ └── Slider.test.tsx │ │ └── index.tsx │ ├── SocialIcon │ │ ├── __tests__ │ │ │ └── SocialIcon.test.tsx │ │ └── index.tsx │ ├── SpeedDial │ │ ├── __tests__ │ │ │ ├── SpeedDial.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── SpeedDial.test.tsx.snap │ │ └── index.tsx │ ├── Switch │ │ ├── __tests__ │ │ │ └── Switch.test.tsx │ │ └── index.tsx │ ├── Tab │ │ ├── __tests__ │ │ │ └── Tab.test.tsx │ │ └── index.tsx │ ├── TabView │ │ ├── __tests__ │ │ │ └── TabView.test.tsx │ │ └── index.tsx │ ├── Text │ │ ├── __tests__ │ │ │ └── Text.test.tsx │ │ └── index.tsx │ ├── Tile │ │ ├── __tests__ │ │ │ ├── FeaturedTile.test.tsx │ │ │ ├── Tile.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Tile.test.tsx.snap │ │ └── index.tsx │ ├── Tooltip │ │ ├── __tests__ │ │ │ ├── Tooltip.test.tsx │ │ │ └── __snapshots__ │ │ │ │ └── Tooltip.test.tsx.snap │ │ └── index.tsx │ ├── config │ │ ├── ThemeProvider.tsx │ │ ├── __tests__ │ │ │ ├── ThemeProvider.test.tsx │ │ │ ├── makeStyles.test.tsx │ │ │ └── withTheme.test.tsx │ │ ├── colors.ts │ │ ├── index.ts │ │ ├── makeStyles.ts │ │ ├── theme.component.ts │ │ ├── theme.ts │ │ └── withTheme.tsx │ └── index.ts │ └── tsconfig.json ├── scripts ├── .eslintrc ├── docgen │ ├── README.md │ ├── docgenParser.ts │ ├── generateMarkdown.ts │ ├── index.ts │ ├── mdx-template.hbs │ ├── parentProps.ts │ ├── platformMappingHandler.ts │ ├── tsconfig.json │ └── utils.ts └── release │ ├── index.ts │ └── tsconfig.json ├── tsconfig.json ├── website ├── .gitignore ├── .yarn │ ├── plugins │ │ └── @yarnpkg │ │ │ └── plugin-interactive-tools.cjs │ └── releases │ │ └── yarn-3.2.4.cjs ├── .yarnrc.yml ├── README.md ├── blog │ ├── 2018-12-13-react-native-web.md │ ├── 2019-01-27-1.0-release.md │ ├── 2020-08-10-2.3-upgrade-guide.md │ ├── 2021-08-12-auto-generation-of-docs.md │ ├── 2021-08-18-google-summer-of-code-khushal-agarwal.md │ ├── 2021-08-23-google-summer-of-code-arpitBhalla.md │ ├── 2022-05-15-rneui-migration-guide.md │ └── authors.yml ├── docs │ ├── component_usage │ │ ├── AirbnbRating.mdx │ │ ├── Avatar.mdx │ │ ├── Badge.mdx │ │ ├── BottomSheet.mdx │ │ ├── Button.mdx │ │ ├── ButtonGroup.mdx │ │ ├── Card.mdx │ │ ├── CheckBox.mdx │ │ ├── Chip.mdx │ │ ├── Dialog.mdx │ │ ├── Divider.mdx │ │ ├── FAB.mdx │ │ ├── Header.mdx │ │ ├── Icon.mdx │ │ ├── Image.mdx │ │ ├── Input.mdx │ │ ├── LinearProgress.mdx │ │ ├── ListItem.Accordion.mdx │ │ ├── ListItem.Swipeable.mdx │ │ ├── ListItem.mdx │ │ ├── Overlay.mdx │ │ ├── PricingCard.mdx │ │ ├── Rating.mdx │ │ ├── SearchBar.mdx │ │ ├── Slider.mdx │ │ ├── SocialIcon.mdx │ │ ├── SpeedDial.mdx │ │ ├── Switch.mdx │ │ ├── Tab.mdx │ │ ├── TabView.mdx │ │ ├── Text.mdx │ │ ├── Tile.mdx │ │ └── Tooltip.mdx │ ├── components │ │ ├── AirbnbRating.mdx │ │ ├── Avatar.Accessory.mdx │ │ ├── Avatar.mdx │ │ ├── Badge.mdx │ │ ├── BottomSheet.mdx │ │ ├── Button.mdx │ │ ├── ButtonGroup.mdx │ │ ├── Card.Divider.mdx │ │ ├── Card.FeaturedSubtitle.mdx │ │ ├── Card.FeaturedTitle.mdx │ │ ├── Card.Image.mdx │ │ ├── Card.Title.mdx │ │ ├── Card.mdx │ │ ├── CheckBox.mdx │ │ ├── Chip.mdx │ │ ├── Dialog.Actions.mdx │ │ ├── Dialog.Button.mdx │ │ ├── Dialog.Loading.mdx │ │ ├── Dialog.Title.mdx │ │ ├── Dialog.mdx │ │ ├── Divider.mdx │ │ ├── FAB.mdx │ │ ├── Header.mdx │ │ ├── Icon.mdx │ │ ├── Image.mdx │ │ ├── Input.mdx │ │ ├── LinearProgress.mdx │ │ ├── ListItem.Accordion.mdx │ │ ├── ListItem.ButtonGroup.mdx │ │ ├── ListItem.CheckBox.mdx │ │ ├── ListItem.Chevron.mdx │ │ ├── ListItem.Content.mdx │ │ ├── ListItem.Input.mdx │ │ ├── ListItem.Subtitle.mdx │ │ ├── ListItem.Swipeable.mdx │ │ ├── ListItem.Title.mdx │ │ ├── ListItem.mdx │ │ ├── Overlay.mdx │ │ ├── PricingCard.mdx │ │ ├── Rating.mdx │ │ ├── SearchBar.mdx │ │ ├── Skeleton.mdx │ │ ├── Slider.mdx │ │ ├── SocialIcon.mdx │ │ ├── SpeedDial.Action.mdx │ │ ├── SpeedDial.mdx │ │ ├── Switch.mdx │ │ ├── Tab.Item.mdx │ │ ├── Tab.mdx │ │ ├── TabView.Item.mdx │ │ ├── TabView.mdx │ │ ├── Text.mdx │ │ ├── Tile.mdx │ │ └── Tooltip.mdx │ ├── customization │ │ ├── 0.index.mdx │ │ ├── 1.themeprovider.mdx │ │ ├── 2.theme_object.mdx │ │ ├── 3.extending.mdx │ │ ├── 4.pitfall.mdx │ │ └── Color.tsx │ ├── index.mdx │ ├── installation.mdx │ ├── migration-guide.md │ ├── repo │ │ ├── contributing.mdx │ │ ├── labels.md │ │ └── testing.md │ ├── troubleshooting.mdx │ └── universe │ │ └── getting_started.md ├── docusaurus.config.js ├── i18n │ └── en.json ├── package.json ├── playground │ ├── AirbnbRating │ │ └── airbnbrating.playground.tsx │ ├── Avatar │ │ └── avatar.playground.tsx │ ├── Badge │ │ └── badge.playground.tsx │ ├── BottomSheet │ │ └── bottomsheet.playground.tsx │ ├── Button │ │ └── button.playground.tsx │ ├── ButtonGroup │ │ └── buttongroup.playground.tsx │ ├── Card │ │ └── card.playground.tsx │ ├── CheckBox │ │ └── checkbox.playground.tsx │ ├── Divider │ │ └── divider.playground.tsx │ ├── FAB │ │ └── fab.playground.tsx │ ├── Header │ │ └── header.playground.tsx │ ├── Icon │ │ └── icon.playground.tsx │ ├── Image │ │ └── input.playground.tsx │ ├── Input │ │ └── input.playground.tsx │ ├── LinearProgress │ │ └── linearprogress.playground.tsx │ ├── ListItem │ │ └── listitem.playground.tsx │ ├── Pricing │ │ └── pricing.playground.tsx │ ├── Rating │ │ └── rating.playground.tsx │ ├── SearchBar │ │ └── searchbar.playground.tsx │ ├── SkippedOverlay │ │ └── overlay.playground.tsx │ ├── SkippedToolTip │ │ └── tooltip.playground.tsx │ ├── Slider │ │ └── slider.playground.tsx │ ├── SocialIcon │ │ └── socialicon.playground.tsx │ ├── SpeedDial │ │ └── speeddial.playground.tsx │ ├── Switch │ │ └── switch.playground.tsx │ ├── Tab │ │ └── tab.playground.tsx │ ├── Text │ │ └── text.playground.tsx │ ├── Tile │ │ └── tile.playground.tsx │ └── utils │ │ └── createReactViewBaseConfig.js ├── plugins │ ├── react-native-elements-web.js │ └── remark-snackplayer.js ├── sidebars.ts ├── snackPlayerInitializer.js ├── sponsors.config.ts ├── src │ ├── components │ │ ├── Community.tsx │ │ ├── Docs_Icons.tsx │ │ ├── Extentions.tsx │ │ ├── Features.tsx │ │ ├── Hero.tsx │ │ ├── IconTag.tsx │ │ ├── Installation.tsx │ │ ├── OpenCollective.tsx │ │ ├── Playground.tsx │ │ ├── RunOnExpo.tsx │ │ ├── SectionHeader.tsx │ │ ├── Sponsor.tsx │ │ └── StartNow.tsx │ ├── pages │ │ ├── help.tsx │ │ ├── index.tsx │ │ ├── migration-guides.md │ │ ├── sponsor.tsx │ │ ├── team.tsx │ │ └── versions.tsx │ └── theme │ │ ├── Footer.tsx │ │ ├── Playground │ │ ├── index.js │ │ └── styles.module.css │ │ └── ReactLiveScope │ │ └── index.js ├── static │ ├── CNAME │ ├── css │ │ ├── components.css │ │ ├── custom.css │ │ ├── modules.css │ │ ├── syntax.css │ │ └── toggler.css │ └── img │ │ ├── SpeedDial.gif │ │ ├── accorsion.gif │ │ ├── app-preview.png │ │ ├── arcSlider.png │ │ ├── avatar │ │ ├── avatar--edit.jpg │ │ ├── avatar--icon.jpg │ │ ├── avatar--photo.jpg │ │ └── avatar--title.jpg │ │ ├── avatar_all.png │ │ ├── avatar_with_icons.png │ │ ├── avatar_with_images.png │ │ ├── avatar_with_initials.png │ │ ├── avatar_with_title_placeholder.gif │ │ ├── badge │ │ ├── badge--indicator.jpg │ │ ├── badge--mini.jpg │ │ ├── badge--standard.jpg │ │ └── badge--withBadge.png │ │ ├── badges.png │ │ ├── bottomsheet.gif │ │ ├── button │ │ ├── button--clear.jpg │ │ ├── button--outline.jpg │ │ └── button--solid.jpg │ │ ├── button_group.png │ │ ├── buttons.png │ │ ├── buttons_0.19.png │ │ ├── card.png │ │ ├── checkbox.png │ │ ├── chip │ │ ├── chip--outline.jpg │ │ └── chip--solid.jpg │ │ ├── circularSlider1.gif │ │ ├── circularSlider2.gif │ │ ├── dialog │ │ ├── dialog--custom1.gif │ │ ├── dialog--custom2.gif │ │ ├── dialog--loading.gif │ │ ├── dialog--multi.jpg │ │ ├── dialog--noaction.jpg │ │ └── dialog--simple.jpg │ │ ├── fab.png │ │ ├── favicon.png │ │ ├── forms_fields.png │ │ ├── forms_validation.png │ │ ├── header-left.png │ │ ├── header.png │ │ ├── icons.png │ │ ├── input.png │ │ ├── input │ │ ├── input--label.png │ │ └── input--placeholder.png │ │ ├── input_with_explanation.png │ │ ├── input_without_explanation.png │ │ ├── linearProgress.gif │ │ ├── list-badges.jpeg │ │ ├── listitem_with_gradient_scale.gif │ │ ├── lists.png │ │ ├── logo-icon.svg │ │ ├── logo.png │ │ ├── overlay.png │ │ ├── peer-dep-error.png │ │ ├── pricing.png │ │ ├── rating_component.gif │ │ ├── rating_readonly.jpg │ │ ├── react-native-training.png │ │ ├── searchbar.png │ │ ├── slider_screenshot.png │ │ ├── social-icons.png │ │ ├── speeddial.png │ │ ├── swipeable.gif │ │ ├── switch_gif.gif │ │ ├── tab.jpg │ │ ├── text.png │ │ ├── tooltipExample.gif │ │ └── website │ │ ├── Expo Go.png │ │ ├── app-preview2.png │ │ ├── app-preview3.png │ │ ├── bootstrap.svg │ │ ├── ci-checks.png │ │ ├── design.svg │ │ ├── explore.svg │ │ ├── expo-go-qr.svg │ │ ├── logo.png │ │ ├── seo.png │ │ ├── slack.png │ │ ├── start_now.png │ │ ├── tweak.svg │ │ ├── vsc_ext.png │ │ └── vscode.svg ├── tsconfig.json ├── versioned_docs │ ├── version-1.2.0 │ │ ├── avatar.md │ │ ├── badge.md │ │ ├── button.md │ │ ├── button_group.md │ │ ├── card.md │ │ ├── checkbox.md │ │ ├── contributing.md │ │ ├── customization.md │ │ ├── divider.md │ │ ├── getting_started.md │ │ ├── header.md │ │ ├── icon.md │ │ ├── image.md │ │ ├── input.md │ │ ├── labels.md │ │ ├── listitem.md │ │ ├── overlay.md │ │ ├── overview.md │ │ ├── pricing.md │ │ ├── rating.md │ │ ├── searchbar.md │ │ ├── slider.md │ │ ├── social_icons.md │ │ ├── testing.md │ │ ├── text.md │ │ ├── tile.md │ │ ├── tooltip.md │ │ ├── troubleshooting.md │ │ └── web_usage.md │ ├── version-2.3.2 │ │ ├── avatar.md │ │ ├── badge.md │ │ ├── bottomsheet.md │ │ ├── button.md │ │ ├── button_group.md │ │ ├── card.md │ │ ├── checkbox.md │ │ ├── contributing.md │ │ ├── customization.md │ │ ├── divider.md │ │ ├── getting_started.md │ │ ├── header.md │ │ ├── icon.md │ │ ├── image.md │ │ ├── input.md │ │ ├── labels.md │ │ ├── listitem.md │ │ ├── overlay.md │ │ ├── overview.md │ │ ├── pricing.md │ │ ├── rating.md │ │ ├── searchbar.md │ │ ├── slider.md │ │ ├── social_icons.md │ │ ├── testing.md │ │ ├── text.md │ │ ├── tile.md │ │ ├── tooltip.md │ │ ├── troubleshooting.md │ │ └── web_usage.md │ ├── version-3.4.2 │ │ ├── avatar.md │ │ ├── badge.md │ │ ├── bottomsheet.md │ │ ├── button.md │ │ ├── button_group.md │ │ ├── card.md │ │ ├── checkbox.md │ │ ├── chip.md │ │ ├── circularSlider.md │ │ ├── contributing.md │ │ ├── customization.md │ │ ├── dialog.md │ │ ├── divider.md │ │ ├── fab.md │ │ ├── getting_started.md │ │ ├── header.md │ │ ├── icon.md │ │ ├── image.md │ │ ├── input.md │ │ ├── labels.md │ │ ├── linearProgress.md │ │ ├── listitem.md │ │ ├── overlay.md │ │ ├── overview.md │ │ ├── pricing.md │ │ ├── props │ │ │ ├── avatar.md │ │ │ ├── badge.md │ │ │ ├── bottomsheet.md │ │ │ ├── button.md │ │ │ ├── button_group.md │ │ │ ├── card.md │ │ │ ├── checkbox.md │ │ │ ├── chip.md │ │ │ ├── circularslider.md │ │ │ ├── dialog.md │ │ │ ├── divider.md │ │ │ ├── fab.md │ │ │ ├── header.md │ │ │ ├── icon.md │ │ │ ├── image.md │ │ │ ├── input.md │ │ │ ├── linearProgress.md │ │ │ ├── listitem.md │ │ │ ├── overlay.md │ │ │ ├── pricing.md │ │ │ ├── rating.md │ │ │ ├── searchbar.md │ │ │ ├── slider.md │ │ │ ├── social_icons.md │ │ │ ├── speeddial.md │ │ │ ├── switch.md │ │ │ ├── tab.md │ │ │ ├── text.md │ │ │ ├── tile.md │ │ │ └── tooltip.md │ │ ├── rating.md │ │ ├── searchbar.md │ │ ├── slider.md │ │ ├── social_icons.md │ │ ├── speeddial.md │ │ ├── switch.md │ │ ├── tab.md │ │ ├── testing.md │ │ ├── text.md │ │ ├── tile.md │ │ ├── tooltip.md │ │ ├── troubleshooting.md │ │ └── web_usage.md │ ├── version-4.0.0-beta.0 │ │ ├── contributing.md │ │ ├── customization.md │ │ ├── getting_started.md │ │ ├── main │ │ │ ├── AirbnbRating.md │ │ │ ├── Avatar.md │ │ │ ├── Badge.md │ │ │ ├── BottomSheet.md │ │ │ ├── Button.md │ │ │ ├── ButtonGroup.md │ │ │ ├── Card.md │ │ │ ├── CheckBox.md │ │ │ ├── Chip.md │ │ │ ├── Dialog.md │ │ │ ├── Divider.md │ │ │ ├── FAB.md │ │ │ ├── Header.md │ │ │ ├── Icon.md │ │ │ ├── Image.md │ │ │ ├── Input.md │ │ │ ├── LinearProgress.md │ │ │ ├── ListItem.md │ │ │ ├── Overlay.md │ │ │ ├── PricingCard.md │ │ │ ├── Rating.md │ │ │ ├── SearchBar.md │ │ │ ├── Slider.md │ │ │ ├── SocialIcon.md │ │ │ ├── SpeedDial.md │ │ │ ├── Switch.md │ │ │ ├── Tab.md │ │ │ ├── TabView.md │ │ │ ├── Text.md │ │ │ ├── Tile.md │ │ │ ├── Tooltip.md │ │ │ └── usage │ │ │ │ ├── AirbnbRating │ │ │ │ ├── AirbnbRating.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Avatar │ │ │ │ ├── Avatar.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Badge │ │ │ │ ├── Badge.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── BottomSheet │ │ │ │ ├── BottomSheet.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Button │ │ │ │ ├── Button.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── ButtonGroup │ │ │ │ ├── ButtonGroup.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Card │ │ │ │ ├── Card.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── CheckBox │ │ │ │ ├── CheckBox.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Chip │ │ │ │ ├── Chip.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Dialog │ │ │ │ ├── Dialog.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Divider │ │ │ │ ├── Divider.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── FAB │ │ │ │ ├── FAB.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Header │ │ │ │ ├── Header.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Icon │ │ │ │ ├── Icon.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Image │ │ │ │ ├── Image.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Input │ │ │ │ ├── Input.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── LinearProgress │ │ │ │ ├── LinearProgress.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── ListItem │ │ │ │ ├── ListItem.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Overlay │ │ │ │ ├── Overlay.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── PricingCard │ │ │ │ ├── PricingCard.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Rating │ │ │ │ ├── Rating.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── SearchBar │ │ │ │ ├── SearchBar.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Slider │ │ │ │ ├── Slider.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── SocialIcon │ │ │ │ ├── SocialIcon.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── SpeedDial │ │ │ │ ├── SpeedDial.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Switch │ │ │ │ ├── Switch.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Tab │ │ │ │ ├── Tab.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── TabView │ │ │ │ └── TabView.md │ │ │ │ ├── Text │ │ │ │ ├── Text.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ ├── Tile │ │ │ │ ├── Tile.md │ │ │ │ └── snack │ │ │ │ │ └── index.md │ │ │ │ └── Tooltip │ │ │ │ ├── Tooltip.md │ │ │ │ └── snack │ │ │ │ └── index.md │ │ ├── migration-v4.md │ │ ├── overview.md │ │ ├── repo │ │ │ ├── labels.md │ │ │ └── testing.md │ │ ├── troubleshooting.md │ │ ├── universe │ │ │ ├── circularSlider.md │ │ │ └── props │ │ │ │ └── circularslider.md │ │ └── web_usage.md │ ├── version-4.0.0-rc.1 │ │ ├── component_usage │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── components │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.Accessory.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.Divider.mdx │ │ │ ├── Card.FeaturedSubtitle.mdx │ │ │ ├── Card.FeaturedTitle.mdx │ │ │ ├── Card.Image.mdx │ │ │ ├── Card.Title.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.Actions.mdx │ │ │ ├── Dialog.Button.mdx │ │ │ ├── Dialog.Loading.mdx │ │ │ ├── Dialog.Title.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.ButtonGroup.mdx │ │ │ ├── ListItem.CheckBox.mdx │ │ │ ├── ListItem.Chevron.mdx │ │ │ ├── ListItem.Content.mdx │ │ │ ├── ListItem.Input.mdx │ │ │ ├── ListItem.Subtitle.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.Title.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Skeleton.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.Action.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.Item.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.Item.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── customization │ │ │ ├── Color.tsx │ │ │ ├── color.mdx │ │ │ ├── components.mdx │ │ │ ├── overview.mdx │ │ │ ├── pitfall.mdx │ │ │ ├── theming.mdx │ │ │ └── typescript.mdx │ │ ├── index.mdx │ │ ├── installation.mdx │ │ ├── migration-guide.md │ │ ├── repo │ │ │ ├── contributing.mdx │ │ │ ├── labels.md │ │ │ └── testing.md │ │ ├── troubleshooting.md │ │ └── universe │ │ │ ├── CircularSlider.mdx │ │ │ └── getting_started.md │ ├── version-4.0.0-rc.2 │ │ ├── component_usage │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── components │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.Accessory.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.Divider.mdx │ │ │ ├── Card.FeaturedSubtitle.mdx │ │ │ ├── Card.FeaturedTitle.mdx │ │ │ ├── Card.Image.mdx │ │ │ ├── Card.Title.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.Actions.mdx │ │ │ ├── Dialog.Button.mdx │ │ │ ├── Dialog.Loading.mdx │ │ │ ├── Dialog.Title.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.ButtonGroup.mdx │ │ │ ├── ListItem.CheckBox.mdx │ │ │ ├── ListItem.Chevron.mdx │ │ │ ├── ListItem.Content.mdx │ │ │ ├── ListItem.Input.mdx │ │ │ ├── ListItem.Subtitle.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.Title.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Skeleton.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.Action.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.Item.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.Item.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── customization │ │ │ ├── Color.tsx │ │ │ ├── color.mdx │ │ │ ├── components.mdx │ │ │ ├── index.mdx │ │ │ ├── pitfall.mdx │ │ │ ├── theming.mdx │ │ │ └── typescript.mdx │ │ ├── index.mdx │ │ ├── installation.mdx │ │ ├── migration-guide.md │ │ ├── repo │ │ │ ├── contributing.mdx │ │ │ ├── labels.md │ │ │ └── testing.md │ │ ├── troubleshooting.md │ │ └── universe │ │ │ ├── CircularSlider.mdx │ │ │ └── getting_started.md │ ├── version-4.0.0-rc.3 │ │ ├── component_usage │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── components │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.Accessory.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.Divider.mdx │ │ │ ├── Card.FeaturedSubtitle.mdx │ │ │ ├── Card.FeaturedTitle.mdx │ │ │ ├── Card.Image.mdx │ │ │ ├── Card.Title.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.Actions.mdx │ │ │ ├── Dialog.Button.mdx │ │ │ ├── Dialog.Loading.mdx │ │ │ ├── Dialog.Title.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.ButtonGroup.mdx │ │ │ ├── ListItem.CheckBox.mdx │ │ │ ├── ListItem.Chevron.mdx │ │ │ ├── ListItem.Content.mdx │ │ │ ├── ListItem.Input.mdx │ │ │ ├── ListItem.Subtitle.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.Title.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Skeleton.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.Action.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.Item.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.Item.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── customization │ │ │ ├── 0.index.mdx │ │ │ ├── 1.themprovider.mdx │ │ │ ├── 2.theme object.mdx │ │ │ ├── 3.typescript.mdx │ │ │ ├── 4.pitfall.mdx │ │ │ └── Color.tsx │ │ ├── index.mdx │ │ ├── installation.mdx │ │ ├── migration-guide.md │ │ ├── repo │ │ │ ├── contributing.mdx │ │ │ ├── labels.md │ │ │ └── testing.md │ │ ├── troubleshooting.mdx │ │ └── universe │ │ │ └── getting_started.md │ ├── version-4.0.0-rc.4 │ │ ├── component_usage │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── components │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.Accessory.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.Divider.mdx │ │ │ ├── Card.FeaturedSubtitle.mdx │ │ │ ├── Card.FeaturedTitle.mdx │ │ │ ├── Card.Image.mdx │ │ │ ├── Card.Title.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.Actions.mdx │ │ │ ├── Dialog.Button.mdx │ │ │ ├── Dialog.Loading.mdx │ │ │ ├── Dialog.Title.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.ButtonGroup.mdx │ │ │ ├── ListItem.CheckBox.mdx │ │ │ ├── ListItem.Chevron.mdx │ │ │ ├── ListItem.Content.mdx │ │ │ ├── ListItem.Input.mdx │ │ │ ├── ListItem.Subtitle.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.Title.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Skeleton.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.Action.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.Item.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.Item.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── customization │ │ │ ├── 0.index.mdx │ │ │ ├── 1.themprovider.mdx │ │ │ ├── 2.theme object.mdx │ │ │ ├── 3.typescript.mdx │ │ │ ├── 4.pitfall.mdx │ │ │ └── Color.tsx │ │ ├── index.mdx │ │ ├── installation.mdx │ │ ├── migration-guide.md │ │ ├── repo │ │ │ ├── contributing.mdx │ │ │ ├── labels.md │ │ │ └── testing.md │ │ ├── troubleshooting.mdx │ │ └── universe │ │ │ └── getting_started.md │ ├── version-4.0.0-rc.5 │ │ ├── component_usage │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── components │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.Accessory.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.Divider.mdx │ │ │ ├── Card.FeaturedSubtitle.mdx │ │ │ ├── Card.FeaturedTitle.mdx │ │ │ ├── Card.Image.mdx │ │ │ ├── Card.Title.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.Actions.mdx │ │ │ ├── Dialog.Button.mdx │ │ │ ├── Dialog.Loading.mdx │ │ │ ├── Dialog.Title.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.ButtonGroup.mdx │ │ │ ├── ListItem.CheckBox.mdx │ │ │ ├── ListItem.Chevron.mdx │ │ │ ├── ListItem.Content.mdx │ │ │ ├── ListItem.Input.mdx │ │ │ ├── ListItem.Subtitle.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.Title.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Skeleton.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.Action.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.Item.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.Item.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── customization │ │ │ ├── 0.index.mdx │ │ │ ├── 1.themprovider.mdx │ │ │ ├── 2.theme object.mdx │ │ │ ├── 3.typescript.mdx │ │ │ ├── 4.pitfall.mdx │ │ │ └── Color.tsx │ │ ├── index.mdx │ │ ├── installation.mdx │ │ ├── migration-guide.md │ │ ├── repo │ │ │ ├── contributing.mdx │ │ │ ├── labels.md │ │ │ └── testing.md │ │ ├── troubleshooting.mdx │ │ └── universe │ │ │ └── getting_started.md │ ├── version-4.0.0-rc.6 │ │ ├── component_usage │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── components │ │ │ ├── AirbnbRating.mdx │ │ │ ├── Avatar.Accessory.mdx │ │ │ ├── Avatar.mdx │ │ │ ├── Badge.mdx │ │ │ ├── BottomSheet.mdx │ │ │ ├── Button.mdx │ │ │ ├── ButtonGroup.mdx │ │ │ ├── Card.Divider.mdx │ │ │ ├── Card.FeaturedSubtitle.mdx │ │ │ ├── Card.FeaturedTitle.mdx │ │ │ ├── Card.Image.mdx │ │ │ ├── Card.Title.mdx │ │ │ ├── Card.mdx │ │ │ ├── CheckBox.mdx │ │ │ ├── Chip.mdx │ │ │ ├── Dialog.Actions.mdx │ │ │ ├── Dialog.Button.mdx │ │ │ ├── Dialog.Loading.mdx │ │ │ ├── Dialog.Title.mdx │ │ │ ├── Dialog.mdx │ │ │ ├── Divider.mdx │ │ │ ├── FAB.mdx │ │ │ ├── Header.mdx │ │ │ ├── Icon.mdx │ │ │ ├── Image.mdx │ │ │ ├── Input.mdx │ │ │ ├── LinearProgress.mdx │ │ │ ├── ListItem.Accordion.mdx │ │ │ ├── ListItem.ButtonGroup.mdx │ │ │ ├── ListItem.CheckBox.mdx │ │ │ ├── ListItem.Chevron.mdx │ │ │ ├── ListItem.Content.mdx │ │ │ ├── ListItem.Input.mdx │ │ │ ├── ListItem.Subtitle.mdx │ │ │ ├── ListItem.Swipeable.mdx │ │ │ ├── ListItem.Title.mdx │ │ │ ├── ListItem.mdx │ │ │ ├── Overlay.mdx │ │ │ ├── PricingCard.mdx │ │ │ ├── Rating.mdx │ │ │ ├── SearchBar.mdx │ │ │ ├── Skeleton.mdx │ │ │ ├── Slider.mdx │ │ │ ├── SocialIcon.mdx │ │ │ ├── SpeedDial.Action.mdx │ │ │ ├── SpeedDial.mdx │ │ │ ├── Switch.mdx │ │ │ ├── Tab.Item.mdx │ │ │ ├── Tab.mdx │ │ │ ├── TabView.Item.mdx │ │ │ ├── TabView.mdx │ │ │ ├── Text.mdx │ │ │ ├── Tile.mdx │ │ │ └── Tooltip.mdx │ │ ├── customization │ │ │ ├── 0.index.mdx │ │ │ ├── 1.themprovider.mdx │ │ │ ├── 2.theme object.mdx │ │ │ ├── 3.typescript.mdx │ │ │ ├── 4.pitfall.mdx │ │ │ └── Color.tsx │ │ ├── index.mdx │ │ ├── installation.mdx │ │ ├── migration-guide.md │ │ ├── repo │ │ │ ├── contributing.mdx │ │ │ ├── labels.md │ │ │ └── testing.md │ │ ├── troubleshooting.mdx │ │ └── universe │ │ │ └── getting_started.md │ └── version-4.0.0-rc.7 │ │ ├── component_usage │ │ ├── AirbnbRating.mdx │ │ ├── Avatar.mdx │ │ ├── Badge.mdx │ │ ├── BottomSheet.mdx │ │ ├── Button.mdx │ │ ├── ButtonGroup.mdx │ │ ├── Card.mdx │ │ ├── CheckBox.mdx │ │ ├── Chip.mdx │ │ ├── Dialog.mdx │ │ ├── Divider.mdx │ │ ├── FAB.mdx │ │ ├── Header.mdx │ │ ├── Icon.mdx │ │ ├── Image.mdx │ │ ├── Input.mdx │ │ ├── LinearProgress.mdx │ │ ├── ListItem.Accordion.mdx │ │ ├── ListItem.Swipeable.mdx │ │ ├── ListItem.mdx │ │ ├── Overlay.mdx │ │ ├── PricingCard.mdx │ │ ├── Rating.mdx │ │ ├── SearchBar.mdx │ │ ├── Slider.mdx │ │ ├── SocialIcon.mdx │ │ ├── SpeedDial.mdx │ │ ├── Switch.mdx │ │ ├── Tab.mdx │ │ ├── TabView.mdx │ │ ├── Text.mdx │ │ ├── Tile.mdx │ │ └── Tooltip.mdx │ │ ├── components │ │ ├── AirbnbRating.mdx │ │ ├── Avatar.Accessory.mdx │ │ ├── Avatar.mdx │ │ ├── Badge.mdx │ │ ├── BottomSheet.mdx │ │ ├── Button.mdx │ │ ├── ButtonGroup.mdx │ │ ├── Card.Divider.mdx │ │ ├── Card.FeaturedSubtitle.mdx │ │ ├── Card.FeaturedTitle.mdx │ │ ├── Card.Image.mdx │ │ ├── Card.Title.mdx │ │ ├── Card.mdx │ │ ├── CheckBox.mdx │ │ ├── Chip.mdx │ │ ├── Dialog.Actions.mdx │ │ ├── Dialog.Button.mdx │ │ ├── Dialog.Loading.mdx │ │ ├── Dialog.Title.mdx │ │ ├── Dialog.mdx │ │ ├── Divider.mdx │ │ ├── FAB.mdx │ │ ├── Header.mdx │ │ ├── Icon.mdx │ │ ├── Image.mdx │ │ ├── Input.mdx │ │ ├── LinearProgress.mdx │ │ ├── ListItem.Accordion.mdx │ │ ├── ListItem.ButtonGroup.mdx │ │ ├── ListItem.CheckBox.mdx │ │ ├── ListItem.Chevron.mdx │ │ ├── ListItem.Content.mdx │ │ ├── ListItem.Input.mdx │ │ ├── ListItem.Subtitle.mdx │ │ ├── ListItem.Swipeable.mdx │ │ ├── ListItem.Title.mdx │ │ ├── ListItem.mdx │ │ ├── Overlay.mdx │ │ ├── PricingCard.mdx │ │ ├── Rating.mdx │ │ ├── SearchBar.mdx │ │ ├── Skeleton.mdx │ │ ├── Slider.mdx │ │ ├── SocialIcon.mdx │ │ ├── SpeedDial.Action.mdx │ │ ├── SpeedDial.mdx │ │ ├── Switch.mdx │ │ ├── Tab.Item.mdx │ │ ├── Tab.mdx │ │ ├── TabView.Item.mdx │ │ ├── TabView.mdx │ │ ├── Text.mdx │ │ ├── Tile.mdx │ │ └── Tooltip.mdx │ │ ├── customization │ │ ├── 0.index.mdx │ │ ├── 1.themeprovider.mdx │ │ ├── 2.theme_object.mdx │ │ ├── 3.extending.mdx │ │ ├── 4.pitfall.mdx │ │ └── Color.tsx │ │ ├── index.mdx │ │ ├── installation.mdx │ │ ├── migration-guide.md │ │ ├── repo │ │ ├── contributing.mdx │ │ ├── labels.md │ │ └── testing.md │ │ ├── troubleshooting.mdx │ │ └── universe │ │ └── getting_started.md ├── versioned_sidebars │ ├── version-1.2.0-sidebars.json │ ├── version-2.3.2-sidebars.json │ ├── version-3.4.2-sidebars.json │ ├── version-4.0.0-beta.0-sidebars.json │ ├── version-4.0.0-rc.0-sidebars.json │ ├── version-4.0.0-rc.1-sidebars.json │ ├── version-4.0.0-rc.2-sidebars.json │ ├── version-4.0.0-rc.3-sidebars.json │ ├── version-4.0.0-rc.4-sidebars.json │ ├── version-4.0.0-rc.5-sidebars.json │ ├── version-4.0.0-rc.6-sidebars.json │ └── version-4.0.0-rc.7-sidebars.json ├── versions.json └── yarn.lock └── yarn.lock /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.editorconfig -------------------------------------------------------------------------------- /.eslintignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.eslintignore -------------------------------------------------------------------------------- /.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.eslintrc -------------------------------------------------------------------------------- /.github/FUNDING.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/FUNDING.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/ISSUE_TEMPLATE/bug_report.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/config.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/ISSUE_TEMPLATE/config.yml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/ISSUE_TEMPLATE/feature-request.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/actions/install/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/actions/install/action.yml -------------------------------------------------------------------------------- /.github/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/release.yml -------------------------------------------------------------------------------- /.github/workflows/bleeding-edge-dist-PR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/workflows/bleeding-edge-dist-PR.yml -------------------------------------------------------------------------------- /.github/workflows/bleeding-edge-dist.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/workflows/bleeding-edge-dist.yml -------------------------------------------------------------------------------- /.github/workflows/ci-checks.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/workflows/ci-checks.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/expo-preview-PR.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/workflows/expo-preview-PR.yml -------------------------------------------------------------------------------- /.github/workflows/expo.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/workflows/expo.yml -------------------------------------------------------------------------------- /.github/workflows/upgrade-expo-sdk.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.github/workflows/upgrade-expo-sdk.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | . "$(dirname "$0")/_/husky.sh" 3 | 4 | yarn lint-staged 5 | -------------------------------------------------------------------------------- /.prettierignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.prettierignore -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.prettierrc -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.2.4.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.yarn/releases/yarn-3.2.4.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.old.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/CHANGELOG.old.md -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/README.md -------------------------------------------------------------------------------- /codecov.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/codecov.yml -------------------------------------------------------------------------------- /example/.eslintignore: -------------------------------------------------------------------------------- 1 | web-build -------------------------------------------------------------------------------- /example/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/.eslintrc -------------------------------------------------------------------------------- /example/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/.gitignore -------------------------------------------------------------------------------- /example/.prettierignore: -------------------------------------------------------------------------------- 1 | /node_modules 2 | /.expo 3 | /web 4 | /*.json 5 | -------------------------------------------------------------------------------- /example/.prettierrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/.prettierrc -------------------------------------------------------------------------------- /example/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /example/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/App.tsx -------------------------------------------------------------------------------- /example/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/README.md -------------------------------------------------------------------------------- /example/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/app.json -------------------------------------------------------------------------------- /example/app.web-build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/app.web-build.json -------------------------------------------------------------------------------- /example/assets/fonts/Georgia.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/fonts/Georgia.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Montserrat-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/fonts/Montserrat-Bold.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Montserrat-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/fonts/Montserrat-Light.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Montserrat-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/fonts/Montserrat-Regular.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Ubuntu-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/fonts/Ubuntu-Bold.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Ubuntu-Light-Italic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/fonts/Ubuntu-Light-Italic.ttf -------------------------------------------------------------------------------- /example/assets/fonts/Ubuntu-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/fonts/Ubuntu-Light.ttf -------------------------------------------------------------------------------- /example/assets/icons/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/icons/icon.png -------------------------------------------------------------------------------- /example/assets/icons/loading.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/icons/loading.png -------------------------------------------------------------------------------- /example/assets/images/avatar1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/avatar1.jpg -------------------------------------------------------------------------------- /example/assets/images/bg_screen1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/bg_screen1.jpg -------------------------------------------------------------------------------- /example/assets/images/bg_screen2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/bg_screen2.jpg -------------------------------------------------------------------------------- /example/assets/images/bg_screen3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/bg_screen3.jpg -------------------------------------------------------------------------------- /example/assets/images/bg_screen4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/bg_screen4.jpg -------------------------------------------------------------------------------- /example/assets/images/user-cool.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/user-cool.png -------------------------------------------------------------------------------- /example/assets/images/user-hp.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/user-hp.png -------------------------------------------------------------------------------- /example/assets/images/user-student.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/user-student.png -------------------------------------------------------------------------------- /example/assets/images/wallpaper_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/wallpaper_1.jpg -------------------------------------------------------------------------------- /example/assets/images/wallpaper_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/wallpaper_2.jpg -------------------------------------------------------------------------------- /example/assets/images/wallpaper_3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/wallpaper_3.jpg -------------------------------------------------------------------------------- /example/assets/images/wallpaper_4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/images/wallpaper_4.jpg -------------------------------------------------------------------------------- /example/assets/mocks/4e2c606885b9fb2d8aea70827e4949bf.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/mocks/4e2c606885b9fb2d8aea70827e4949bf.jpg -------------------------------------------------------------------------------- /example/assets/mocks/Android-N-new-settings-ui-mockup.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/mocks/Android-N-new-settings-ui-mockup.jpg -------------------------------------------------------------------------------- /example/assets/mocks/iOS-10-vs-iOS-11-Settings.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/assets/mocks/iOS-10-vs-iOS-11-Settings.jpeg -------------------------------------------------------------------------------- /example/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/babel.config.js -------------------------------------------------------------------------------- /example/eas.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/eas.json -------------------------------------------------------------------------------- /example/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/index.js -------------------------------------------------------------------------------- /example/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/metro.config.js -------------------------------------------------------------------------------- /example/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/package.json -------------------------------------------------------------------------------- /example/src/components/AppLoading.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/components/AppLoading.ts -------------------------------------------------------------------------------- /example/src/components/AppLoading.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/components/AppLoading.web.tsx -------------------------------------------------------------------------------- /example/src/components/LinearGradient.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/components/LinearGradient.ts -------------------------------------------------------------------------------- /example/src/components/header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/components/header.tsx -------------------------------------------------------------------------------- /example/src/config/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/config/colors.ts -------------------------------------------------------------------------------- /example/src/config/fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/config/fonts.ts -------------------------------------------------------------------------------- /example/src/config/socialColors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/config/socialColors.ts -------------------------------------------------------------------------------- /example/src/config/stack.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/config/stack.ts -------------------------------------------------------------------------------- /example/src/helpers/AssetsCaching.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/helpers/AssetsCaching.tsx -------------------------------------------------------------------------------- /example/src/helpers/AssetsCaching.web.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/helpers/AssetsCaching.web.tsx -------------------------------------------------------------------------------- /example/src/helpers/ThemeReducer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/helpers/ThemeReducer.tsx -------------------------------------------------------------------------------- /example/src/helpers/vector-fonts.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/helpers/vector-fonts.ts -------------------------------------------------------------------------------- /example/src/helpers/vector-fonts.web.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/helpers/vector-fonts.web.ts -------------------------------------------------------------------------------- /example/src/images/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/images/logo.png -------------------------------------------------------------------------------- /example/src/images/rating.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/images/rating.png -------------------------------------------------------------------------------- /example/src/images/shirt.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/images/shirt.png -------------------------------------------------------------------------------- /example/src/images/water.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/images/water.png -------------------------------------------------------------------------------- /example/src/navigation/DrawerNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/navigation/DrawerNavigator.tsx -------------------------------------------------------------------------------- /example/src/navigation/RootNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/navigation/RootNavigator.tsx -------------------------------------------------------------------------------- /example/src/views/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/Divider.tsx -------------------------------------------------------------------------------- /example/src/views/avatars.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/avatars.tsx -------------------------------------------------------------------------------- /example/src/views/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/badge.tsx -------------------------------------------------------------------------------- /example/src/views/bottomsheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/bottomsheet.tsx -------------------------------------------------------------------------------- /example/src/views/buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/buttons.tsx -------------------------------------------------------------------------------- /example/src/views/cards.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/cards.tsx -------------------------------------------------------------------------------- /example/src/views/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/checkbox.tsx -------------------------------------------------------------------------------- /example/src/views/chips.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/chips.tsx -------------------------------------------------------------------------------- /example/src/views/dialogs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/dialogs.tsx -------------------------------------------------------------------------------- /example/src/views/fab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/fab.tsx -------------------------------------------------------------------------------- /example/src/views/fonts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/fonts.tsx -------------------------------------------------------------------------------- /example/src/views/image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/image.tsx -------------------------------------------------------------------------------- /example/src/views/inputs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/inputs.tsx -------------------------------------------------------------------------------- /example/src/views/linearProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/linearProgress.tsx -------------------------------------------------------------------------------- /example/src/views/lists/content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/lists/content.tsx -------------------------------------------------------------------------------- /example/src/views/lists/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/lists/index.tsx -------------------------------------------------------------------------------- /example/src/views/lists2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/lists2.tsx -------------------------------------------------------------------------------- /example/src/views/login/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/login/index.tsx -------------------------------------------------------------------------------- /example/src/views/login/screen2.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/login/screen2.tsx -------------------------------------------------------------------------------- /example/src/views/login/screen3.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/login/screen3.tsx -------------------------------------------------------------------------------- /example/src/views/overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/overlay.tsx -------------------------------------------------------------------------------- /example/src/views/pricing.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/pricing.tsx -------------------------------------------------------------------------------- /example/src/views/profile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/profile.tsx -------------------------------------------------------------------------------- /example/src/views/ratings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/ratings.tsx -------------------------------------------------------------------------------- /example/src/views/settings.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/settings.tsx -------------------------------------------------------------------------------- /example/src/views/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/skeleton.tsx -------------------------------------------------------------------------------- /example/src/views/sliders.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/sliders.tsx -------------------------------------------------------------------------------- /example/src/views/social_icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/social_icons.tsx -------------------------------------------------------------------------------- /example/src/views/speedDial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/speedDial.tsx -------------------------------------------------------------------------------- /example/src/views/tabs.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/tabs.tsx -------------------------------------------------------------------------------- /example/src/views/text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/text.tsx -------------------------------------------------------------------------------- /example/src/views/theme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/theme.tsx -------------------------------------------------------------------------------- /example/src/views/tiles.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/tiles.tsx -------------------------------------------------------------------------------- /example/src/views/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/tooltip.tsx -------------------------------------------------------------------------------- /example/src/views/whatsappClone.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/src/views/whatsappClone.tsx -------------------------------------------------------------------------------- /example/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/tsconfig.json -------------------------------------------------------------------------------- /example/web/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/web/favicon.png -------------------------------------------------------------------------------- /example/web/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/web/index.html -------------------------------------------------------------------------------- /example/web/serve.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/web/serve.json -------------------------------------------------------------------------------- /example/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/example/webpack.config.js -------------------------------------------------------------------------------- /lerna.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/lerna.json -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/package.json -------------------------------------------------------------------------------- /packages/base/.ci/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/.ci/setupTests.ts -------------------------------------------------------------------------------- /packages/base/.ci/testHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/.ci/testHelper.tsx -------------------------------------------------------------------------------- /packages/base/.docgenignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/.docgenignore -------------------------------------------------------------------------------- /packages/base/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/.gitignore -------------------------------------------------------------------------------- /packages/base/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/CHANGELOG.md -------------------------------------------------------------------------------- /packages/base/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/README.md -------------------------------------------------------------------------------- /packages/base/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/babel.config.js -------------------------------------------------------------------------------- /packages/base/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/package.json -------------------------------------------------------------------------------- /packages/base/src/AirbnbRating/AirbnbRating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/AirbnbRating/AirbnbRating.tsx -------------------------------------------------------------------------------- /packages/base/src/AirbnbRating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/AirbnbRating/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Avatar/Avatar.Accessory.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Avatar/Avatar.Accessory.tsx -------------------------------------------------------------------------------- /packages/base/src/Avatar/Avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Avatar/Avatar.tsx -------------------------------------------------------------------------------- /packages/base/src/Avatar/__tests__/Accessory.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Avatar/__tests__/Accessory.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Avatar/__tests__/Avatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Avatar/__tests__/Avatar.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Avatar/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Badge/Badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Badge/Badge.tsx -------------------------------------------------------------------------------- /packages/base/src/Badge/__tests__/Badge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Badge/__tests__/Badge.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Badge/__tests__/withBadge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Badge/__tests__/withBadge.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Badge/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Badge/withBadge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Badge/withBadge.tsx -------------------------------------------------------------------------------- /packages/base/src/BottomSheet/BottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/BottomSheet/BottomSheet.tsx -------------------------------------------------------------------------------- /packages/base/src/BottomSheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/BottomSheet/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Button/Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Button/Button.tsx -------------------------------------------------------------------------------- /packages/base/src/Button/__tests__/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Button/__tests__/Button.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Button/index.tsx -------------------------------------------------------------------------------- /packages/base/src/ButtonGroup/ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ButtonGroup/ButtonGroup.tsx -------------------------------------------------------------------------------- /packages/base/src/ButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ButtonGroup/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Card/Card.Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Card/Card.Divider.tsx -------------------------------------------------------------------------------- /packages/base/src/Card/Card.FeaturedSubtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Card/Card.FeaturedSubtitle.tsx -------------------------------------------------------------------------------- /packages/base/src/Card/Card.FeaturedTitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Card/Card.FeaturedTitle.tsx -------------------------------------------------------------------------------- /packages/base/src/Card/Card.Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Card/Card.Image.tsx -------------------------------------------------------------------------------- /packages/base/src/Card/Card.Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Card/Card.Title.tsx -------------------------------------------------------------------------------- /packages/base/src/Card/Card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Card/Card.tsx -------------------------------------------------------------------------------- /packages/base/src/Card/__tests__/Card.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Card/__tests__/Card.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Card/index.tsx -------------------------------------------------------------------------------- /packages/base/src/CheckBox/CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/CheckBox/CheckBox.tsx -------------------------------------------------------------------------------- /packages/base/src/CheckBox/__tests__/CheckBox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/CheckBox/__tests__/CheckBox.test.tsx -------------------------------------------------------------------------------- /packages/base/src/CheckBox/components/CheckBoxIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/CheckBox/components/CheckBoxIcon.tsx -------------------------------------------------------------------------------- /packages/base/src/CheckBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/CheckBox/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Chip/Chip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Chip/Chip.tsx -------------------------------------------------------------------------------- /packages/base/src/Chip/__tests__/Chip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Chip/__tests__/Chip.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Chip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Chip/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Dialog/Dialog.Actions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Dialog/Dialog.Actions.tsx -------------------------------------------------------------------------------- /packages/base/src/Dialog/Dialog.Button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Dialog/Dialog.Button.tsx -------------------------------------------------------------------------------- /packages/base/src/Dialog/Dialog.Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Dialog/Dialog.Loading.tsx -------------------------------------------------------------------------------- /packages/base/src/Dialog/Dialog.Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Dialog/Dialog.Title.tsx -------------------------------------------------------------------------------- /packages/base/src/Dialog/Dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Dialog/Dialog.tsx -------------------------------------------------------------------------------- /packages/base/src/Dialog/__tests__/Dialog.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Dialog/__tests__/Dialog.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Dialog/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Divider/Divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Divider/Divider.tsx -------------------------------------------------------------------------------- /packages/base/src/Divider/__tests__/Divider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Divider/__tests__/Divider.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Divider/index.tsx -------------------------------------------------------------------------------- /packages/base/src/FAB/FAB.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/FAB/FAB.tsx -------------------------------------------------------------------------------- /packages/base/src/FAB/__tests__/FAB.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/FAB/__tests__/FAB.test.tsx -------------------------------------------------------------------------------- /packages/base/src/FAB/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/FAB/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Header/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Header/Header.tsx -------------------------------------------------------------------------------- /packages/base/src/Header/__tests__/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Header/__tests__/Header.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Header/components/HeaderChildren.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Header/components/HeaderChildren.tsx -------------------------------------------------------------------------------- /packages/base/src/Header/components/HeaderIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Header/components/HeaderIcon.tsx -------------------------------------------------------------------------------- /packages/base/src/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Header/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Icon/Icon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Icon/Icon.tsx -------------------------------------------------------------------------------- /packages/base/src/Icon/__tests__/Icon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Icon/__tests__/Icon.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Icon/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Image/Image.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Image/Image.tsx -------------------------------------------------------------------------------- /packages/base/src/Image/__tests__/Image.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Image/__tests__/Image.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Image/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Input/Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Input/Input.tsx -------------------------------------------------------------------------------- /packages/base/src/Input/__tests__/Input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Input/__tests__/Input.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Input/index.tsx -------------------------------------------------------------------------------- /packages/base/src/LinearProgress/LinearProgress.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/LinearProgress/LinearProgress.tsx -------------------------------------------------------------------------------- /packages/base/src/LinearProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/LinearProgress/index.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.Accordion.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.Accordion.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.ButtonGroup.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.ButtonGroup.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.CheckBox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.CheckBox.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.Chevron.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.Chevron.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.Content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.Content.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.Input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.Input.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.Subtitle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.Subtitle.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.Swipeable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.Swipeable.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.Title.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.Title.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/ListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/ListItem.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/__tests__/ListItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/__tests__/ListItem.test.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/components/PadView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/components/PadView.tsx -------------------------------------------------------------------------------- /packages/base/src/ListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/ListItem/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Overlay/Overlay.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Overlay/Overlay.tsx -------------------------------------------------------------------------------- /packages/base/src/Overlay/__tests__/Overlay.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Overlay/__tests__/Overlay.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Overlay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Overlay/index.tsx -------------------------------------------------------------------------------- /packages/base/src/PricingCard/PricingCard.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/PricingCard/PricingCard.tsx -------------------------------------------------------------------------------- /packages/base/src/PricingCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/PricingCard/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Rating/Rating.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Rating/Rating.tsx -------------------------------------------------------------------------------- /packages/base/src/Rating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Rating/index.tsx -------------------------------------------------------------------------------- /packages/base/src/SearchBar/SearchBar-android.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SearchBar/SearchBar-android.tsx -------------------------------------------------------------------------------- /packages/base/src/SearchBar/SearchBar-default.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SearchBar/SearchBar-default.tsx -------------------------------------------------------------------------------- /packages/base/src/SearchBar/SearchBar-ios.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SearchBar/SearchBar-ios.tsx -------------------------------------------------------------------------------- /packages/base/src/SearchBar/SearchBar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SearchBar/SearchBar.tsx -------------------------------------------------------------------------------- /packages/base/src/SearchBar/__tests__/SearchBar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SearchBar/__tests__/SearchBar.test.tsx -------------------------------------------------------------------------------- /packages/base/src/SearchBar/__tests__/common.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SearchBar/__tests__/common.tsx -------------------------------------------------------------------------------- /packages/base/src/SearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SearchBar/index.tsx -------------------------------------------------------------------------------- /packages/base/src/SearchBar/types.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SearchBar/types.tsx -------------------------------------------------------------------------------- /packages/base/src/Skeleton/Skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Skeleton/Skeleton.tsx -------------------------------------------------------------------------------- /packages/base/src/Skeleton/__tests__/Skeleton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Skeleton/__tests__/Skeleton.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Skeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Skeleton/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Slider/Slider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Slider/Slider.tsx -------------------------------------------------------------------------------- /packages/base/src/Slider/__tests__/Slider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Slider/__tests__/Slider.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Slider/components/Rect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Slider/components/Rect.tsx -------------------------------------------------------------------------------- /packages/base/src/Slider/components/SliderThumb.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Slider/components/SliderThumb.tsx -------------------------------------------------------------------------------- /packages/base/src/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Slider/index.tsx -------------------------------------------------------------------------------- /packages/base/src/SocialIcon/SocialIcon.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SocialIcon/SocialIcon.tsx -------------------------------------------------------------------------------- /packages/base/src/SocialIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SocialIcon/index.tsx -------------------------------------------------------------------------------- /packages/base/src/SpeedDial/SpeedDial.Action.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SpeedDial/SpeedDial.Action.tsx -------------------------------------------------------------------------------- /packages/base/src/SpeedDial/SpeedDial.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SpeedDial/SpeedDial.tsx -------------------------------------------------------------------------------- /packages/base/src/SpeedDial/__tests__/SpeedDial.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SpeedDial/__tests__/SpeedDial.test.tsx -------------------------------------------------------------------------------- /packages/base/src/SpeedDial/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/SpeedDial/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Switch/Switch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Switch/Switch.tsx -------------------------------------------------------------------------------- /packages/base/src/Switch/__tests__/Switch.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Switch/__tests__/Switch.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Switch/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Tab/Tab.Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tab/Tab.Item.tsx -------------------------------------------------------------------------------- /packages/base/src/Tab/Tab.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tab/Tab.tsx -------------------------------------------------------------------------------- /packages/base/src/Tab/__tests__/Tab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tab/__tests__/Tab.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Tab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tab/index.tsx -------------------------------------------------------------------------------- /packages/base/src/TabView/TabView.Item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/TabView/TabView.Item.tsx -------------------------------------------------------------------------------- /packages/base/src/TabView/TabView.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/TabView/TabView.tsx -------------------------------------------------------------------------------- /packages/base/src/TabView/__tests__/TabView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/TabView/__tests__/TabView.test.tsx -------------------------------------------------------------------------------- /packages/base/src/TabView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/TabView/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Text/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Text/Text.tsx -------------------------------------------------------------------------------- /packages/base/src/Text/__tests__/Text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Text/__tests__/Text.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Text/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Tile/Tile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tile/Tile.tsx -------------------------------------------------------------------------------- /packages/base/src/Tile/__tests__/FeaturedTile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tile/__tests__/FeaturedTile.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Tile/__tests__/Tile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tile/__tests__/Tile.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Tile/components/FeaturedTile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tile/components/FeaturedTile.tsx -------------------------------------------------------------------------------- /packages/base/src/Tile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tile/index.tsx -------------------------------------------------------------------------------- /packages/base/src/Tooltip/Tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tooltip/Tooltip.tsx -------------------------------------------------------------------------------- /packages/base/src/Tooltip/__tests__/Tooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tooltip/__tests__/Tooltip.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Tooltip/__tests__/Triangle.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tooltip/__tests__/Triangle.test.tsx -------------------------------------------------------------------------------- /packages/base/src/Tooltip/components/Triangle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tooltip/components/Triangle.tsx -------------------------------------------------------------------------------- /packages/base/src/Tooltip/helpers/getTooltipStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tooltip/helpers/getTooltipStyle.tsx -------------------------------------------------------------------------------- /packages/base/src/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/Tooltip/index.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/BackgroundImage.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/BackgroundImage.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/InlinePressableProps.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/InlinePressableProps.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/__tests__/colors.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/__tests__/colors.test.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/colors.ts -------------------------------------------------------------------------------- /packages/base/src/helpers/fonts.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/fonts.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/getIconStyle.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/getIconStyle.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/getIconType.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/getIconType.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/index.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/makeStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/makeStyles.ts -------------------------------------------------------------------------------- /packages/base/src/helpers/normalizeText.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/normalizeText.tsx -------------------------------------------------------------------------------- /packages/base/src/helpers/renderNode.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/helpers/renderNode.tsx -------------------------------------------------------------------------------- /packages/base/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/src/index.ts -------------------------------------------------------------------------------- /packages/base/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/base/tsconfig.json -------------------------------------------------------------------------------- /packages/themed/.ci/setupTests.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/.ci/setupTests.ts -------------------------------------------------------------------------------- /packages/themed/.ci/testHelper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/.ci/testHelper.tsx -------------------------------------------------------------------------------- /packages/themed/.docgenignore: -------------------------------------------------------------------------------- 1 | ** 2 | -------------------------------------------------------------------------------- /packages/themed/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/.gitignore -------------------------------------------------------------------------------- /packages/themed/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/CHANGELOG.md -------------------------------------------------------------------------------- /packages/themed/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/README.md -------------------------------------------------------------------------------- /packages/themed/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/babel.config.js -------------------------------------------------------------------------------- /packages/themed/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/package.json -------------------------------------------------------------------------------- /packages/themed/src/AirbnbRating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/AirbnbRating/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Avatar/__tests__/Avatar.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Avatar/__tests__/Avatar.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Avatar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Avatar/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Badge/__tests__/Badge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Badge/__tests__/Badge.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Badge/__tests__/withBadge.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Badge/__tests__/withBadge.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Badge/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Badge/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/BottomSheet/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/BottomSheet/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Button/__tests__/Button.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Button/__tests__/Button.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Button/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Button/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/ButtonGroup/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/ButtonGroup/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Card/__tests__/Card.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Card/__tests__/Card.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Card/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Card/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/CheckBox/__tests__/CheckBox.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/CheckBox/__tests__/CheckBox.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/CheckBox/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/CheckBox/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Chip/__tests__/Chip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Chip/__tests__/Chip.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Chip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Chip/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Dialog/__tests__/Dialog.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Dialog/__tests__/Dialog.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Dialog/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Dialog/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Divider/__tests__/Divider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Divider/__tests__/Divider.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Divider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Divider/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/FAB/__tests__/FAB.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/FAB/__tests__/FAB.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/FAB/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/FAB/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Header/__tests__/Header.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Header/__tests__/Header.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Header/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Header/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Icon/__tests__/Icon.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Icon/__tests__/Icon.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Icon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Icon/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Image/__tests__/Image.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Image/__tests__/Image.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Image/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Image/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Input/__tests__/Input.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Input/__tests__/Input.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Input/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Input/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/LinearProgress/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/LinearProgress/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/ListItem/__tests__/ListItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/ListItem/__tests__/ListItem.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/ListItem/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/ListItem/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Overlay/__tests__/Overlay.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Overlay/__tests__/Overlay.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Overlay/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Overlay/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/PricingCard/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/PricingCard/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Rating/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Rating/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/SearchBar/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/SearchBar/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Skeleton/__tests__/Skeleton.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Skeleton/__tests__/Skeleton.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Skeleton/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Skeleton/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Slider/__tests__/Slider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Slider/__tests__/Slider.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Slider/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Slider/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/SocialIcon/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/SocialIcon/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/SpeedDial/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/SpeedDial/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Switch/__tests__/Switch.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Switch/__tests__/Switch.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Switch/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Switch/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Tab/__tests__/Tab.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Tab/__tests__/Tab.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Tab/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Tab/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/TabView/__tests__/TabView.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/TabView/__tests__/TabView.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/TabView/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/TabView/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Text/__tests__/Text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Text/__tests__/Text.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Text/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Text/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Tile/__tests__/FeaturedTile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Tile/__tests__/FeaturedTile.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Tile/__tests__/Tile.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Tile/__tests__/Tile.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Tile/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Tile/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/Tooltip/__tests__/Tooltip.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Tooltip/__tests__/Tooltip.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/Tooltip/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/Tooltip/index.tsx -------------------------------------------------------------------------------- /packages/themed/src/config/ThemeProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/ThemeProvider.tsx -------------------------------------------------------------------------------- /packages/themed/src/config/__tests__/makeStyles.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/__tests__/makeStyles.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/config/__tests__/withTheme.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/__tests__/withTheme.test.tsx -------------------------------------------------------------------------------- /packages/themed/src/config/colors.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/colors.ts -------------------------------------------------------------------------------- /packages/themed/src/config/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/index.ts -------------------------------------------------------------------------------- /packages/themed/src/config/makeStyles.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/makeStyles.ts -------------------------------------------------------------------------------- /packages/themed/src/config/theme.component.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/theme.component.ts -------------------------------------------------------------------------------- /packages/themed/src/config/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/theme.ts -------------------------------------------------------------------------------- /packages/themed/src/config/withTheme.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/config/withTheme.tsx -------------------------------------------------------------------------------- /packages/themed/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/src/index.ts -------------------------------------------------------------------------------- /packages/themed/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/packages/themed/tsconfig.json -------------------------------------------------------------------------------- /scripts/.eslintrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/.eslintrc -------------------------------------------------------------------------------- /scripts/docgen/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/README.md -------------------------------------------------------------------------------- /scripts/docgen/docgenParser.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/docgenParser.ts -------------------------------------------------------------------------------- /scripts/docgen/generateMarkdown.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/generateMarkdown.ts -------------------------------------------------------------------------------- /scripts/docgen/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/index.ts -------------------------------------------------------------------------------- /scripts/docgen/mdx-template.hbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/mdx-template.hbs -------------------------------------------------------------------------------- /scripts/docgen/parentProps.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/parentProps.ts -------------------------------------------------------------------------------- /scripts/docgen/platformMappingHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/platformMappingHandler.ts -------------------------------------------------------------------------------- /scripts/docgen/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/tsconfig.json -------------------------------------------------------------------------------- /scripts/docgen/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/docgen/utils.ts -------------------------------------------------------------------------------- /scripts/release/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/release/index.ts -------------------------------------------------------------------------------- /scripts/release/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/scripts/release/tsconfig.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.yarn/releases/yarn-3.2.4.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/.yarn/releases/yarn-3.2.4.cjs -------------------------------------------------------------------------------- /website/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/.yarnrc.yml -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/README.md -------------------------------------------------------------------------------- /website/blog/2018-12-13-react-native-web.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/blog/2018-12-13-react-native-web.md -------------------------------------------------------------------------------- /website/blog/2019-01-27-1.0-release.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/blog/2019-01-27-1.0-release.md -------------------------------------------------------------------------------- /website/blog/2020-08-10-2.3-upgrade-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/blog/2020-08-10-2.3-upgrade-guide.md -------------------------------------------------------------------------------- /website/blog/2021-08-12-auto-generation-of-docs.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/blog/2021-08-12-auto-generation-of-docs.md -------------------------------------------------------------------------------- /website/blog/2022-05-15-rneui-migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/blog/2022-05-15-rneui-migration-guide.md -------------------------------------------------------------------------------- /website/blog/authors.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/blog/authors.yml -------------------------------------------------------------------------------- /website/docs/component_usage/AirbnbRating.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/AirbnbRating.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Avatar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Avatar.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Badge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Badge.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/BottomSheet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/BottomSheet.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Button.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/ButtonGroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/ButtonGroup.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Card.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/CheckBox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/CheckBox.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Chip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Chip.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Dialog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Dialog.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Divider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Divider.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/FAB.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/FAB.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Header.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Header.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Icon.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Icon.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Image.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Input.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/LinearProgress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/LinearProgress.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/ListItem.Accordion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/ListItem.Accordion.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/ListItem.Swipeable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/ListItem.Swipeable.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/ListItem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/ListItem.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Overlay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Overlay.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/PricingCard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/PricingCard.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Rating.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Rating.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/SearchBar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/SearchBar.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Slider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Slider.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/SocialIcon.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/SocialIcon.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/SpeedDial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/SpeedDial.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Switch.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Switch.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Tab.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Tab.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/TabView.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/docs/component_usage/Text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Text.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Tile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Tile.mdx -------------------------------------------------------------------------------- /website/docs/component_usage/Tooltip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/component_usage/Tooltip.mdx -------------------------------------------------------------------------------- /website/docs/components/AirbnbRating.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/AirbnbRating.mdx -------------------------------------------------------------------------------- /website/docs/components/Avatar.Accessory.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Avatar.Accessory.mdx -------------------------------------------------------------------------------- /website/docs/components/Avatar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Avatar.mdx -------------------------------------------------------------------------------- /website/docs/components/Badge.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Badge.mdx -------------------------------------------------------------------------------- /website/docs/components/BottomSheet.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/BottomSheet.mdx -------------------------------------------------------------------------------- /website/docs/components/Button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Button.mdx -------------------------------------------------------------------------------- /website/docs/components/ButtonGroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ButtonGroup.mdx -------------------------------------------------------------------------------- /website/docs/components/Card.Divider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Card.Divider.mdx -------------------------------------------------------------------------------- /website/docs/components/Card.FeaturedSubtitle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Card.FeaturedSubtitle.mdx -------------------------------------------------------------------------------- /website/docs/components/Card.FeaturedTitle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Card.FeaturedTitle.mdx -------------------------------------------------------------------------------- /website/docs/components/Card.Image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Card.Image.mdx -------------------------------------------------------------------------------- /website/docs/components/Card.Title.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Card.Title.mdx -------------------------------------------------------------------------------- /website/docs/components/Card.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Card.mdx -------------------------------------------------------------------------------- /website/docs/components/CheckBox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/CheckBox.mdx -------------------------------------------------------------------------------- /website/docs/components/Chip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Chip.mdx -------------------------------------------------------------------------------- /website/docs/components/Dialog.Actions.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Dialog.Actions.mdx -------------------------------------------------------------------------------- /website/docs/components/Dialog.Button.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Dialog.Button.mdx -------------------------------------------------------------------------------- /website/docs/components/Dialog.Loading.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Dialog.Loading.mdx -------------------------------------------------------------------------------- /website/docs/components/Dialog.Title.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Dialog.Title.mdx -------------------------------------------------------------------------------- /website/docs/components/Dialog.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Dialog.mdx -------------------------------------------------------------------------------- /website/docs/components/Divider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Divider.mdx -------------------------------------------------------------------------------- /website/docs/components/FAB.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/FAB.mdx -------------------------------------------------------------------------------- /website/docs/components/Header.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Header.mdx -------------------------------------------------------------------------------- /website/docs/components/Icon.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Icon.mdx -------------------------------------------------------------------------------- /website/docs/components/Image.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Image.mdx -------------------------------------------------------------------------------- /website/docs/components/Input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Input.mdx -------------------------------------------------------------------------------- /website/docs/components/LinearProgress.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/LinearProgress.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.Accordion.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.Accordion.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.ButtonGroup.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.ButtonGroup.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.CheckBox.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.CheckBox.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.Chevron.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.Chevron.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.Content.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.Content.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.Input.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.Input.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.Subtitle.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.Subtitle.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.Swipeable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.Swipeable.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.Title.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.Title.mdx -------------------------------------------------------------------------------- /website/docs/components/ListItem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/ListItem.mdx -------------------------------------------------------------------------------- /website/docs/components/Overlay.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Overlay.mdx -------------------------------------------------------------------------------- /website/docs/components/PricingCard.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/PricingCard.mdx -------------------------------------------------------------------------------- /website/docs/components/Rating.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Rating.mdx -------------------------------------------------------------------------------- /website/docs/components/SearchBar.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/SearchBar.mdx -------------------------------------------------------------------------------- /website/docs/components/Skeleton.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Skeleton.mdx -------------------------------------------------------------------------------- /website/docs/components/Slider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Slider.mdx -------------------------------------------------------------------------------- /website/docs/components/SocialIcon.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/SocialIcon.mdx -------------------------------------------------------------------------------- /website/docs/components/SpeedDial.Action.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/SpeedDial.Action.mdx -------------------------------------------------------------------------------- /website/docs/components/SpeedDial.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/SpeedDial.mdx -------------------------------------------------------------------------------- /website/docs/components/Switch.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Switch.mdx -------------------------------------------------------------------------------- /website/docs/components/Tab.Item.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Tab.Item.mdx -------------------------------------------------------------------------------- /website/docs/components/Tab.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Tab.mdx -------------------------------------------------------------------------------- /website/docs/components/TabView.Item.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/TabView.Item.mdx -------------------------------------------------------------------------------- /website/docs/components/TabView.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/TabView.mdx -------------------------------------------------------------------------------- /website/docs/components/Text.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Text.mdx -------------------------------------------------------------------------------- /website/docs/components/Tile.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Tile.mdx -------------------------------------------------------------------------------- /website/docs/components/Tooltip.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/components/Tooltip.mdx -------------------------------------------------------------------------------- /website/docs/customization/0.index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/customization/0.index.mdx -------------------------------------------------------------------------------- /website/docs/customization/1.themeprovider.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/customization/1.themeprovider.mdx -------------------------------------------------------------------------------- /website/docs/customization/2.theme_object.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/customization/2.theme_object.mdx -------------------------------------------------------------------------------- /website/docs/customization/3.extending.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/customization/3.extending.mdx -------------------------------------------------------------------------------- /website/docs/customization/4.pitfall.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/customization/4.pitfall.mdx -------------------------------------------------------------------------------- /website/docs/customization/Color.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/customization/Color.tsx -------------------------------------------------------------------------------- /website/docs/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/index.mdx -------------------------------------------------------------------------------- /website/docs/installation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/installation.mdx -------------------------------------------------------------------------------- /website/docs/migration-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/migration-guide.md -------------------------------------------------------------------------------- /website/docs/repo/contributing.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/repo/contributing.mdx -------------------------------------------------------------------------------- /website/docs/repo/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/repo/labels.md -------------------------------------------------------------------------------- /website/docs/repo/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/repo/testing.md -------------------------------------------------------------------------------- /website/docs/troubleshooting.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/troubleshooting.mdx -------------------------------------------------------------------------------- /website/docs/universe/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docs/universe/getting_started.md -------------------------------------------------------------------------------- /website/docusaurus.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/docusaurus.config.js -------------------------------------------------------------------------------- /website/i18n/en.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/i18n/en.json -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/package.json -------------------------------------------------------------------------------- /website/playground/Avatar/avatar.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Avatar/avatar.playground.tsx -------------------------------------------------------------------------------- /website/playground/Badge/badge.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Badge/badge.playground.tsx -------------------------------------------------------------------------------- /website/playground/BottomSheet/bottomsheet.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/BottomSheet/bottomsheet.playground.tsx -------------------------------------------------------------------------------- /website/playground/Button/button.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Button/button.playground.tsx -------------------------------------------------------------------------------- /website/playground/ButtonGroup/buttongroup.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/ButtonGroup/buttongroup.playground.tsx -------------------------------------------------------------------------------- /website/playground/Card/card.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Card/card.playground.tsx -------------------------------------------------------------------------------- /website/playground/CheckBox/checkbox.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/CheckBox/checkbox.playground.tsx -------------------------------------------------------------------------------- /website/playground/Divider/divider.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Divider/divider.playground.tsx -------------------------------------------------------------------------------- /website/playground/FAB/fab.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/FAB/fab.playground.tsx -------------------------------------------------------------------------------- /website/playground/Header/header.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Header/header.playground.tsx -------------------------------------------------------------------------------- /website/playground/Icon/icon.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Icon/icon.playground.tsx -------------------------------------------------------------------------------- /website/playground/Image/input.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Image/input.playground.tsx -------------------------------------------------------------------------------- /website/playground/Input/input.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Input/input.playground.tsx -------------------------------------------------------------------------------- /website/playground/ListItem/listitem.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/ListItem/listitem.playground.tsx -------------------------------------------------------------------------------- /website/playground/Pricing/pricing.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Pricing/pricing.playground.tsx -------------------------------------------------------------------------------- /website/playground/Rating/rating.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Rating/rating.playground.tsx -------------------------------------------------------------------------------- /website/playground/SearchBar/searchbar.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/SearchBar/searchbar.playground.tsx -------------------------------------------------------------------------------- /website/playground/SkippedOverlay/overlay.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/SkippedOverlay/overlay.playground.tsx -------------------------------------------------------------------------------- /website/playground/SkippedToolTip/tooltip.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/SkippedToolTip/tooltip.playground.tsx -------------------------------------------------------------------------------- /website/playground/Slider/slider.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Slider/slider.playground.tsx -------------------------------------------------------------------------------- /website/playground/SocialIcon/socialicon.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/SocialIcon/socialicon.playground.tsx -------------------------------------------------------------------------------- /website/playground/SpeedDial/speeddial.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/SpeedDial/speeddial.playground.tsx -------------------------------------------------------------------------------- /website/playground/Switch/switch.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Switch/switch.playground.tsx -------------------------------------------------------------------------------- /website/playground/Tab/tab.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Tab/tab.playground.tsx -------------------------------------------------------------------------------- /website/playground/Text/text.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Text/text.playground.tsx -------------------------------------------------------------------------------- /website/playground/Tile/tile.playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/Tile/tile.playground.tsx -------------------------------------------------------------------------------- /website/playground/utils/createReactViewBaseConfig.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/playground/utils/createReactViewBaseConfig.js -------------------------------------------------------------------------------- /website/plugins/react-native-elements-web.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/plugins/react-native-elements-web.js -------------------------------------------------------------------------------- /website/plugins/remark-snackplayer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/plugins/remark-snackplayer.js -------------------------------------------------------------------------------- /website/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/sidebars.ts -------------------------------------------------------------------------------- /website/snackPlayerInitializer.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/snackPlayerInitializer.js -------------------------------------------------------------------------------- /website/sponsors.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/sponsors.config.ts -------------------------------------------------------------------------------- /website/src/components/Community.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/Community.tsx -------------------------------------------------------------------------------- /website/src/components/Docs_Icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/Docs_Icons.tsx -------------------------------------------------------------------------------- /website/src/components/Extentions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/Extentions.tsx -------------------------------------------------------------------------------- /website/src/components/Features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/Features.tsx -------------------------------------------------------------------------------- /website/src/components/Hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/Hero.tsx -------------------------------------------------------------------------------- /website/src/components/IconTag.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/IconTag.tsx -------------------------------------------------------------------------------- /website/src/components/Installation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/Installation.tsx -------------------------------------------------------------------------------- /website/src/components/OpenCollective.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/OpenCollective.tsx -------------------------------------------------------------------------------- /website/src/components/Playground.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/Playground.tsx -------------------------------------------------------------------------------- /website/src/components/RunOnExpo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/RunOnExpo.tsx -------------------------------------------------------------------------------- /website/src/components/SectionHeader.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/SectionHeader.tsx -------------------------------------------------------------------------------- /website/src/components/Sponsor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/Sponsor.tsx -------------------------------------------------------------------------------- /website/src/components/StartNow.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/components/StartNow.tsx -------------------------------------------------------------------------------- /website/src/pages/help.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/pages/help.tsx -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/src/pages/migration-guides.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/pages/migration-guides.md -------------------------------------------------------------------------------- /website/src/pages/sponsor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/pages/sponsor.tsx -------------------------------------------------------------------------------- /website/src/pages/team.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/pages/team.tsx -------------------------------------------------------------------------------- /website/src/pages/versions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/pages/versions.tsx -------------------------------------------------------------------------------- /website/src/theme/Footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/theme/Footer.tsx -------------------------------------------------------------------------------- /website/src/theme/Playground/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/theme/Playground/index.js -------------------------------------------------------------------------------- /website/src/theme/Playground/styles.module.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/theme/Playground/styles.module.css -------------------------------------------------------------------------------- /website/src/theme/ReactLiveScope/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/src/theme/ReactLiveScope/index.js -------------------------------------------------------------------------------- /website/static/CNAME: -------------------------------------------------------------------------------- 1 | reactnativeelements.com -------------------------------------------------------------------------------- /website/static/css/components.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/css/components.css -------------------------------------------------------------------------------- /website/static/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/css/custom.css -------------------------------------------------------------------------------- /website/static/css/modules.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/css/modules.css -------------------------------------------------------------------------------- /website/static/css/syntax.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/css/syntax.css -------------------------------------------------------------------------------- /website/static/css/toggler.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/css/toggler.css -------------------------------------------------------------------------------- /website/static/img/SpeedDial.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/SpeedDial.gif -------------------------------------------------------------------------------- /website/static/img/accorsion.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/accorsion.gif -------------------------------------------------------------------------------- /website/static/img/app-preview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/app-preview.png -------------------------------------------------------------------------------- /website/static/img/arcSlider.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/arcSlider.png -------------------------------------------------------------------------------- /website/static/img/avatar/avatar--edit.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar/avatar--edit.jpg -------------------------------------------------------------------------------- /website/static/img/avatar/avatar--icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar/avatar--icon.jpg -------------------------------------------------------------------------------- /website/static/img/avatar/avatar--photo.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar/avatar--photo.jpg -------------------------------------------------------------------------------- /website/static/img/avatar/avatar--title.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar/avatar--title.jpg -------------------------------------------------------------------------------- /website/static/img/avatar_all.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar_all.png -------------------------------------------------------------------------------- /website/static/img/avatar_with_icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar_with_icons.png -------------------------------------------------------------------------------- /website/static/img/avatar_with_images.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar_with_images.png -------------------------------------------------------------------------------- /website/static/img/avatar_with_initials.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar_with_initials.png -------------------------------------------------------------------------------- /website/static/img/avatar_with_title_placeholder.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/avatar_with_title_placeholder.gif -------------------------------------------------------------------------------- /website/static/img/badge/badge--indicator.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/badge/badge--indicator.jpg -------------------------------------------------------------------------------- /website/static/img/badge/badge--mini.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/badge/badge--mini.jpg -------------------------------------------------------------------------------- /website/static/img/badge/badge--standard.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/badge/badge--standard.jpg -------------------------------------------------------------------------------- /website/static/img/badge/badge--withBadge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/badge/badge--withBadge.png -------------------------------------------------------------------------------- /website/static/img/badges.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/badges.png -------------------------------------------------------------------------------- /website/static/img/bottomsheet.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/bottomsheet.gif -------------------------------------------------------------------------------- /website/static/img/button/button--clear.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/button/button--clear.jpg -------------------------------------------------------------------------------- /website/static/img/button/button--outline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/button/button--outline.jpg -------------------------------------------------------------------------------- /website/static/img/button/button--solid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/button/button--solid.jpg -------------------------------------------------------------------------------- /website/static/img/button_group.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/button_group.png -------------------------------------------------------------------------------- /website/static/img/buttons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/buttons.png -------------------------------------------------------------------------------- /website/static/img/buttons_0.19.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/buttons_0.19.png -------------------------------------------------------------------------------- /website/static/img/card.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/card.png -------------------------------------------------------------------------------- /website/static/img/checkbox.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/checkbox.png -------------------------------------------------------------------------------- /website/static/img/chip/chip--outline.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/chip/chip--outline.jpg -------------------------------------------------------------------------------- /website/static/img/chip/chip--solid.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/chip/chip--solid.jpg -------------------------------------------------------------------------------- /website/static/img/circularSlider1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/circularSlider1.gif -------------------------------------------------------------------------------- /website/static/img/circularSlider2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/circularSlider2.gif -------------------------------------------------------------------------------- /website/static/img/dialog/dialog--custom1.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/dialog/dialog--custom1.gif -------------------------------------------------------------------------------- /website/static/img/dialog/dialog--custom2.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/dialog/dialog--custom2.gif -------------------------------------------------------------------------------- /website/static/img/dialog/dialog--loading.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/dialog/dialog--loading.gif -------------------------------------------------------------------------------- /website/static/img/dialog/dialog--multi.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/dialog/dialog--multi.jpg -------------------------------------------------------------------------------- /website/static/img/dialog/dialog--noaction.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/dialog/dialog--noaction.jpg -------------------------------------------------------------------------------- /website/static/img/dialog/dialog--simple.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/dialog/dialog--simple.jpg -------------------------------------------------------------------------------- /website/static/img/fab.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/fab.png -------------------------------------------------------------------------------- /website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/favicon.png -------------------------------------------------------------------------------- /website/static/img/forms_fields.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/forms_fields.png -------------------------------------------------------------------------------- /website/static/img/forms_validation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/forms_validation.png -------------------------------------------------------------------------------- /website/static/img/header-left.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/header-left.png -------------------------------------------------------------------------------- /website/static/img/header.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/header.png -------------------------------------------------------------------------------- /website/static/img/icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/icons.png -------------------------------------------------------------------------------- /website/static/img/input.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/input.png -------------------------------------------------------------------------------- /website/static/img/input/input--label.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/input/input--label.png -------------------------------------------------------------------------------- /website/static/img/input/input--placeholder.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/input/input--placeholder.png -------------------------------------------------------------------------------- /website/static/img/input_with_explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/input_with_explanation.png -------------------------------------------------------------------------------- /website/static/img/input_without_explanation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/input_without_explanation.png -------------------------------------------------------------------------------- /website/static/img/linearProgress.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/linearProgress.gif -------------------------------------------------------------------------------- /website/static/img/list-badges.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/list-badges.jpeg -------------------------------------------------------------------------------- /website/static/img/listitem_with_gradient_scale.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/listitem_with_gradient_scale.gif -------------------------------------------------------------------------------- /website/static/img/lists.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/lists.png -------------------------------------------------------------------------------- /website/static/img/logo-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/logo-icon.svg -------------------------------------------------------------------------------- /website/static/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/logo.png -------------------------------------------------------------------------------- /website/static/img/overlay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/overlay.png -------------------------------------------------------------------------------- /website/static/img/peer-dep-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/peer-dep-error.png -------------------------------------------------------------------------------- /website/static/img/pricing.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/pricing.png -------------------------------------------------------------------------------- /website/static/img/rating_component.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/rating_component.gif -------------------------------------------------------------------------------- /website/static/img/rating_readonly.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/rating_readonly.jpg -------------------------------------------------------------------------------- /website/static/img/react-native-training.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/react-native-training.png -------------------------------------------------------------------------------- /website/static/img/searchbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/searchbar.png -------------------------------------------------------------------------------- /website/static/img/slider_screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/slider_screenshot.png -------------------------------------------------------------------------------- /website/static/img/social-icons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/social-icons.png -------------------------------------------------------------------------------- /website/static/img/speeddial.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/speeddial.png -------------------------------------------------------------------------------- /website/static/img/swipeable.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/swipeable.gif -------------------------------------------------------------------------------- /website/static/img/switch_gif.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/switch_gif.gif -------------------------------------------------------------------------------- /website/static/img/tab.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/tab.jpg -------------------------------------------------------------------------------- /website/static/img/text.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/text.png -------------------------------------------------------------------------------- /website/static/img/tooltipExample.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/tooltipExample.gif -------------------------------------------------------------------------------- /website/static/img/website/Expo Go.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/Expo Go.png -------------------------------------------------------------------------------- /website/static/img/website/app-preview2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/app-preview2.png -------------------------------------------------------------------------------- /website/static/img/website/app-preview3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/app-preview3.png -------------------------------------------------------------------------------- /website/static/img/website/bootstrap.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/bootstrap.svg -------------------------------------------------------------------------------- /website/static/img/website/ci-checks.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/ci-checks.png -------------------------------------------------------------------------------- /website/static/img/website/design.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/design.svg -------------------------------------------------------------------------------- /website/static/img/website/explore.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/explore.svg -------------------------------------------------------------------------------- /website/static/img/website/expo-go-qr.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/expo-go-qr.svg -------------------------------------------------------------------------------- /website/static/img/website/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/logo.png -------------------------------------------------------------------------------- /website/static/img/website/seo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/seo.png -------------------------------------------------------------------------------- /website/static/img/website/slack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/slack.png -------------------------------------------------------------------------------- /website/static/img/website/start_now.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/start_now.png -------------------------------------------------------------------------------- /website/static/img/website/tweak.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/tweak.svg -------------------------------------------------------------------------------- /website/static/img/website/vsc_ext.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/vsc_ext.png -------------------------------------------------------------------------------- /website/static/img/website/vscode.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/static/img/website/vscode.svg -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/avatar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/badge.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/button.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/button_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/button_group.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/card.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/checkbox.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/contributing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/customization.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/divider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/getting_started.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/header.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/icon.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/image.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/input.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/labels.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/listitem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/listitem.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/overlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/overlay.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/overview.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/pricing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/rating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/rating.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/searchbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/searchbar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/slider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/social_icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/social_icons.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/testing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/text.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/tile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/tile.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/tooltip.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/troubleshooting.md -------------------------------------------------------------------------------- /website/versioned_docs/version-1.2.0/web_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-1.2.0/web_usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/avatar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/badge.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/bottomsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/bottomsheet.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/button.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/button_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/button_group.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/card.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/checkbox.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/contributing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/customization.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/divider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/getting_started.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/header.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/icon.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/image.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/input.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/labels.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/listitem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/listitem.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/overlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/overlay.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/overview.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/pricing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/rating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/rating.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/searchbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/searchbar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/slider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/social_icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/social_icons.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/testing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/text.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/tile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/tile.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/tooltip.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/troubleshooting.md -------------------------------------------------------------------------------- /website/versioned_docs/version-2.3.2/web_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-2.3.2/web_usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/avatar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/badge.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/bottomsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/bottomsheet.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/button.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/button_group.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/button_group.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/card.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/checkbox.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/chip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/chip.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/circularSlider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/circularSlider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/contributing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/contributing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/customization.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/customization.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/dialog.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/divider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/fab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/fab.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/getting_started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/getting_started.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/header.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/icon.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/image.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/input.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/labels.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/labels.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/linearProgress.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/linearProgress.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/listitem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/listitem.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/overlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/overlay.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/overview.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/overview.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/pricing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/avatar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/avatar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/badge.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/bottomsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/bottomsheet.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/button.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/card.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/checkbox.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/checkbox.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/chip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/chip.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/dialog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/dialog.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/divider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/divider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/fab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/fab.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/header.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/header.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/icon.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/image.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/input.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/listitem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/listitem.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/overlay.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/overlay.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/pricing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/pricing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/rating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/rating.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/searchbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/searchbar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/slider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/speeddial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/speeddial.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/switch.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/tab.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/text.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/tile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/tile.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/props/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/props/tooltip.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/rating.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/rating.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/searchbar.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/searchbar.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/slider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/slider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/social_icons.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/social_icons.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/speeddial.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/speeddial.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/switch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/switch.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/tab.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/tab.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/testing.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/testing.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/text.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/tile.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/tile.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/tooltip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/tooltip.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/troubleshooting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/troubleshooting.md -------------------------------------------------------------------------------- /website/versioned_docs/version-3.4.2/web_usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-3.4.2/web_usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-beta.0/main/Badge.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-beta.0/main/Badge.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-beta.0/main/Card.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-beta.0/main/Card.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-beta.0/main/Chip.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-beta.0/main/Chip.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-beta.0/main/FAB.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-beta.0/main/FAB.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-beta.0/main/Icon.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-beta.0/main/Icon.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-beta.0/main/Image.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-beta.0/main/Image.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-beta.0/main/Input.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-beta.0/main/Input.md -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-beta.0/main/usage/TabView/TabView.md: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.1/component_usage/TabView.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.1/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-rc.1/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.2/component_usage/TabView.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.2/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-rc.2/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.3/component_usage/TabView.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.3/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-rc.3/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.4/component_usage/TabView.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.4/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-rc.4/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.5/component_usage/TabView.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.5/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-rc.5/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.6/component_usage/TabView.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.6/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-rc.6/index.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.7/component_usage/TabView.mdx: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/versioned_docs/version-4.0.0-rc.7/index.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_docs/version-4.0.0-rc.7/index.mdx -------------------------------------------------------------------------------- /website/versioned_sidebars/version-1.2.0-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_sidebars/version-1.2.0-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-2.3.2-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_sidebars/version-2.3.2-sidebars.json -------------------------------------------------------------------------------- /website/versioned_sidebars/version-3.4.2-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versioned_sidebars/version-3.4.2-sidebars.json -------------------------------------------------------------------------------- /website/versions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/versions.json -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/arpitBhalla/react-native-elements/HEAD/yarn.lock --------------------------------------------------------------------------------