├── .changeset └── config.json ├── .eslintrc.js ├── .gitattributes ├── .github ├── actions │ └── setup │ │ └── action.yml └── workflows │ ├── release.yml │ └── run-tests.yml ├── .gitignore ├── .husky ├── post-checkout ├── post-commit ├── post-merge ├── pre-commit └── pre-push ├── .nvmrc ├── .prettierrc.js ├── .yarn └── releases │ └── yarn-3.6.4.cjs ├── .yarnrc.yml ├── CHANGELOG.md ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── __mocks__ └── TestErrorBoundary.tsx ├── app.plugin.js ├── babel.base.js ├── examples ├── README.md ├── bare │ ├── .bundle │ │ └── config │ ├── .eslintrc.js │ ├── .gitignore │ ├── .prettierrc.js │ ├── .watchmanconfig │ ├── CHANGELOG.md │ ├── Gemfile │ ├── Gemfile.lock │ ├── README.md │ ├── __tests__ │ │ └── App.test.tsx │ ├── android │ │ ├── app │ │ │ ├── build.gradle │ │ │ ├── debug.keystore │ │ │ ├── proguard-rules.pro │ │ │ └── src │ │ │ │ ├── debug │ │ │ │ └── AndroidManifest.xml │ │ │ │ └── main │ │ │ │ ├── AndroidManifest.xml │ │ │ │ ├── java │ │ │ │ └── com │ │ │ │ │ └── example │ │ │ │ │ └── rnama │ │ │ │ │ ├── MainActivity.kt │ │ │ │ │ └── MainApplication.kt │ │ │ │ └── res │ │ │ │ ├── drawable │ │ │ │ └── rn_edit_text_material.xml │ │ │ │ ├── mipmap-hdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-mdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ ├── mipmap-xxxhdpi │ │ │ │ ├── ic_launcher.png │ │ │ │ └── ic_launcher_round.png │ │ │ │ └── values │ │ │ │ ├── strings.xml │ │ │ │ └── styles.xml │ │ ├── build.gradle │ │ ├── gradle.properties │ │ ├── gradle │ │ │ └── wrapper │ │ │ │ ├── gradle-wrapper.jar │ │ │ │ └── gradle-wrapper.properties │ │ ├── gradlew │ │ ├── gradlew.bat │ │ └── settings.gradle │ ├── app.json │ ├── babel.config.js │ ├── index.js │ ├── ios │ │ ├── .xcode.env │ │ ├── AMAExample.xcodeproj │ │ │ ├── project.pbxproj │ │ │ └── xcshareddata │ │ │ │ └── xcschemes │ │ │ │ └── AMAExample.xcscheme │ │ ├── AMAExample.xcworkspace │ │ │ ├── contents.xcworkspacedata │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── AMAExample │ │ │ ├── AppDelegate.h │ │ │ ├── AppDelegate.mm │ │ │ ├── Images.xcassets │ │ │ │ ├── AppIcon.appiconset │ │ │ │ │ └── Contents.json │ │ │ │ └── Contents.json │ │ │ ├── Info.plist │ │ │ ├── LaunchScreen.storyboard │ │ │ ├── PrivacyInfo.xcprivacy │ │ │ └── main.m │ │ ├── AMAExampleTests │ │ │ ├── AMAExampleTests.m │ │ │ └── Info.plist │ │ ├── Podfile │ │ └── Podfile.lock │ ├── jest.config.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── App.tsx │ │ ├── AppNavigator.tsx │ │ ├── theme.ts │ │ ├── types.ts │ │ └── utils │ │ │ └── useTypedNavigation.tsx │ └── tsconfig.json ├── expo │ ├── .gitignore │ ├── App.tsx │ ├── CHANGELOG.md │ ├── README.md │ ├── app.json │ ├── assets │ │ ├── adaptive-icon.png │ │ ├── favicon.png │ │ ├── icon.png │ │ └── splash.png │ ├── babel.config.js │ ├── index.js │ ├── metro.config.js │ ├── package.json │ ├── src │ │ ├── AppNavigation.tsx │ │ └── types.ts │ └── tsconfig.json └── shared │ ├── CHANGELOG.md │ ├── index.ts │ ├── package.json │ ├── src │ ├── assets │ │ ├── fox-1.jpg │ │ ├── fox-2.jpg │ │ ├── fox-3.jpg │ │ └── images.ts │ ├── components │ │ ├── BackButton.tsx │ │ ├── CTAPressable.tsx │ │ ├── CTATouchableOpacity.tsx │ │ ├── CTATouchableWithoutFeedback.tsx │ │ ├── Header.tsx │ │ └── Spacer.tsx │ ├── screens │ │ ├── BottomSheet.screen.tsx │ │ ├── Carousel.screen.tsx │ │ ├── ExpandablePressableScreen.tsx │ │ ├── FlatList.screen.tsx │ │ ├── FlatListDynamic.screen.tsx │ │ ├── FlatListStatic.screen.tsx │ │ ├── Form.screen.tsx │ │ ├── Home.screen.tsx │ │ ├── Loading.screen.tsx │ │ ├── Pressable.screen.tsx │ │ ├── SwitchListItemScreen.tsx │ │ ├── Text.screen.tsx │ │ ├── TouchableOpacity.screen.tsx │ │ ├── TouchableWithoutFeedback.screen.tsx │ │ ├── UseAMAContext.screen.tsx │ │ ├── UseAnimationDurationScreen.tsx │ │ ├── UseAnimationScreen.tsx │ │ ├── UseReanimatedAnimationBuilderScreen.tsx │ │ ├── UseReanimatedTimingScreen.tsx │ │ └── UseTimedAction.screen.tsx │ └── theme.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── jest.setup.js ├── package.json ├── packages ├── animations │ ├── CHANGELOG.md │ ├── docs │ │ ├── animations.md │ │ ├── components │ │ │ ├── AnimatedContainer.md │ │ │ └── _category_.json │ │ ├── hooks │ │ │ ├── _category_.json │ │ │ ├── useAnimation.mdx │ │ │ ├── useAnimationDuration.md │ │ │ ├── useReanimatedAnimationBuilder.md │ │ │ └── useReanimatedTiming.md │ │ └── utils │ │ │ ├── _category_.json │ │ │ └── isMotionAnimation.md │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── AnimatedContainer.test.tsx │ │ │ └── AnimatedContainer.tsx │ │ ├── hooks │ │ │ ├── useAnimation.test.ts │ │ │ ├── useAnimation.ts │ │ │ ├── useAnimationDuration.test.ts │ │ │ ├── useAnimationDuration.ts │ │ │ ├── useReanimatedAnimationBuilder.test.ts │ │ │ ├── useReanimatedAnimationBuilder.ts │ │ │ ├── useReanimatedTiming.test.ts │ │ │ └── useReanimatedTiming.ts │ │ ├── index.ts │ │ └── utils │ │ │ └── isMotionAnimation.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── core │ ├── CHANGELOG.md │ ├── docs │ │ ├── components │ │ │ ├── AMAProvider.md │ │ │ ├── AutofocusContainer.md │ │ │ └── _category_.json │ │ ├── core.md │ │ └── hooks │ │ │ ├── _category_.json │ │ │ ├── useAMAContext.md │ │ │ ├── useFocus.md │ │ │ └── useTimedAction.md │ ├── package.json │ ├── scripts │ │ └── create-config.ts │ ├── src │ │ ├── components │ │ │ ├── AMAProvider.integration.test.tsx │ │ │ ├── AMAProvider.test.tsx │ │ │ ├── AMAProvider.tsx │ │ │ ├── AutofocusContainer.test.tsx │ │ │ ├── AutofocusContainer.tsx │ │ │ ├── HideChildrenFromAccessibilityTree.test.tsx │ │ │ └── HideChildrenFromAccessibilityTree.tsx │ │ ├── hooks │ │ │ ├── useButtonChecks.ts │ │ │ ├── useChecks.test.ts │ │ │ ├── useChecks.ts │ │ │ ├── useFocus.test.ts │ │ │ ├── useFocus.ts │ │ │ ├── useTimedAction.android.test.ts │ │ │ ├── useTimedAction.ios.test.ts │ │ │ └── useTimedAction.ts │ │ ├── index.ts │ │ ├── postinstall.js │ │ └── utils │ │ │ ├── numerify.test.ts │ │ │ └── numerify.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── extras │ ├── CHANGELOG.md │ ├── docs │ │ ├── components │ │ │ ├── BottomSheet.md │ │ │ ├── Carousel.md │ │ │ ├── Loading.md │ │ │ └── _category_.json │ │ ├── extras.md │ │ └── hooks │ │ │ ├── _category_.json │ │ │ ├── useCarousel.md │ │ │ └── useKeyboard.md │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── BottomSheet.test.tsx │ │ │ ├── BottomSheet.tsx │ │ │ ├── Carousel.tsx │ │ │ └── Loading.tsx │ │ ├── hooks │ │ │ ├── useBottomSheetGestureHandler.test.ts │ │ │ ├── useBottomSheetGestureHandler.ts │ │ │ ├── useCarousel.ts │ │ │ └── useKeyboard.ts │ │ └── index.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── forms │ ├── CHANGELOG.md │ ├── docs │ │ ├── Form.md │ │ ├── FormField.md │ │ ├── FormSubmit.md │ │ ├── FormSwitch.md │ │ ├── TextInput.mdx │ │ ├── forms.md │ │ ├── useFormField.md │ │ └── useTextInput.md │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── Form.test.tsx │ │ │ ├── Form.tsx │ │ │ ├── FormField.test.tsx │ │ │ ├── FormField.tsx │ │ │ ├── FormSubmit.test.tsx │ │ │ ├── FormSubmit.tsx │ │ │ ├── FormSwitch.tsx │ │ │ ├── TextInput.test.tsx │ │ │ └── TextInput.tsx │ │ ├── hooks │ │ │ ├── useFormField.test.tsx │ │ │ ├── useFormField.ts │ │ │ └── useTextInput.ts │ │ └── index.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── internal │ ├── CHANGELOG.md │ ├── ama.rules.json │ ├── package.json │ ├── src │ │ ├── checks │ │ │ ├── accessibilityLabelChecker.test.ts │ │ │ ├── checkAccessibilityRole.test.ts │ │ │ ├── checkAccessibilityRole.ts │ │ │ ├── checkFocusTrap.test.ts │ │ │ ├── checkFocusTrap.ts │ │ │ ├── checkForAccessibilityState.test.ts │ │ │ ├── checkForAccessibilityState.ts │ │ │ ├── checkMinimumSize.test.ts │ │ │ ├── checkMinimumSize.ts │ │ │ ├── contrastChecker.test.ts │ │ │ ├── contrastChecker.ts │ │ │ ├── noUndefinedProperty.test.ts │ │ │ ├── noUndefinedProperty.ts │ │ │ ├── uppercaseChecker.test.ts │ │ │ ├── uppercaseChecker.ts │ │ │ └── uppercaseStringChecker.ts │ │ ├── index.ts │ │ ├── types.ts │ │ └── utils │ │ │ ├── applyStyle.test.ts │ │ │ ├── applyStyle.ts │ │ │ ├── constants.ts │ │ │ ├── error.style.ts │ │ │ ├── generateAccessibilityStateFromProp.test.ts │ │ │ ├── generateAccessibilityStateFromProp.ts │ │ │ ├── getPropertyFromStyle.test.ts │ │ │ ├── getPropertyFromStyle.ts │ │ │ ├── interpolateAnimation.test.ts │ │ │ ├── interpolateAnimationStates.ts │ │ │ ├── isFocused.ts │ │ │ ├── logger.rules.ts │ │ │ ├── logger.test.ts │ │ │ ├── logger.ts │ │ │ ├── maybeGenerateStringFromElement.test.tsx │ │ │ ├── maybeGenerateStringFromElement.ts │ │ │ ├── minimumTouchableSize.test.ts │ │ │ ├── minimumTouchableSize.tsx │ │ │ └── platformHelpers.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── lists │ ├── CHANGELOG.md │ ├── docs │ │ ├── DynamicFlatList.mdx │ │ ├── FlatList.mdx │ │ ├── StaticFlatList.mdx │ │ └── lists.md │ ├── package.json │ ├── src │ │ ├── components │ │ │ ├── DynamicFlatList.test.tsx │ │ │ ├── DynamicFlatList.tsx │ │ │ ├── FlatList.test.tsx │ │ │ ├── FlatList.tsx │ │ │ └── StaticFlatList.tsx │ │ ├── hooks │ │ │ ├── useDynamicFlatList.test.ts │ │ │ └── useDynamicList.ts │ │ └── index.ts │ ├── tsconfig.build.json │ └── tsconfig.json └── react-native │ ├── CHANGELOG.md │ ├── docs │ ├── components │ │ ├── ExpandablePressable.mdx │ │ ├── Pressable.md │ │ ├── SwitchListItem.mdx │ │ ├── SwitchWrapper.mdx │ │ ├── Text.md │ │ ├── TouchableOpacity.mdx │ │ ├── TouchableWithoutFeedback.mdx │ │ └── _category_.json │ ├── hooks │ │ ├── _category_.json │ │ ├── useExpandable.md │ │ ├── usePressable.mdx │ │ └── useSwitch.md │ └── react-native.md │ ├── package.json │ ├── src │ ├── components │ │ ├── ExpandablePressable.test.tsx │ │ ├── ExpandablePressable.tsx │ │ ├── Pressable.test.tsx │ │ ├── Pressable.tsx │ │ ├── SwitchListItem.test.tsx │ │ ├── SwitchListItem.tsx │ │ ├── SwitchWrapper.tsx │ │ ├── Text.test.tsx │ │ ├── Text.tsx │ │ ├── TouchableOpacity.test.tsx │ │ ├── TouchableOpacity.tsx │ │ ├── TouchableWithoutFeedback.test.tsx │ │ └── TouchableWithoutFeedback.tsx │ ├── hooks │ │ ├── useExpandable.test.ts │ │ ├── useExpandable.ts │ │ ├── usePressable.test.ts │ │ ├── usePressable.ts │ │ └── useSwitch.ts │ └── index.ts │ ├── tsconfig.build.json │ └── tsconfig.json ├── react-native-ama-Hero.png ├── react-native-ama.podspec ├── scripts ├── build-all.sh └── init.sh ├── tsconfig.build.json ├── tsconfig.json ├── website ├── .gitattributes ├── .gitignore ├── .yarn │ └── releases │ │ └── yarn-3.6.4.cjs ├── .yarnrc.yml ├── README.md ├── babel.config.js ├── checklist │ ├── bottom-sheet-drawer.md │ ├── bottom-tab-navigator.md │ ├── bottomsheet.excalidraw │ ├── bottomsheet.png │ ├── button.md │ ├── button.png │ ├── buttons.excalidraw │ ├── carousel.md │ ├── focus.excalidraw │ ├── focus.gif │ ├── focus.md │ ├── form-disabled.png │ ├── form-error.png │ ├── form-focused.png │ ├── form-selected.png │ ├── form.excalidraw │ ├── forms.md │ ├── grid.excalidraw │ ├── grid.png │ ├── headers.excalidraw │ ├── headers.png │ ├── headings.md │ ├── index.md │ ├── list-grids.md │ ├── tabbar.excalidraw │ ├── tabbar.png │ ├── text.excalidraw │ ├── text.gif │ ├── text.md │ └── timed-actions.md ├── docs │ ├── ama-console-error.png │ └── ama │ │ ├── ama-console-error.png │ │ ├── ama-demo.png │ │ ├── config-file.md │ │ ├── getting-started.md │ │ ├── index.md │ │ └── usage.md ├── docusaurus.config.ts ├── guidelines │ ├── accessibility-hint.md │ ├── accessibility-label.md │ ├── accessibility-role.md │ ├── accessibility-states.md │ ├── android-list-feature.gif │ ├── animations.md │ ├── bottomsheet.md │ ├── carousel.md │ ├── contrast.md │ ├── email-field-with-error.png │ ├── focus.md │ ├── forms.md │ ├── grouping.md │ ├── headers.md │ ├── index.md │ ├── lists-grids.md │ ├── minimum-size.md │ ├── next-key.jpg │ ├── pour.md │ ├── text.md │ ├── timed-actions.md │ └── type-of-accessibility-issues.md ├── package.json ├── sidebars.ts ├── sidebarsPackages.ts ├── src │ ├── components │ │ ├── AMASection.jsx │ │ ├── devOnly.jsx │ │ ├── feature.js │ │ ├── index.js │ │ ├── landing │ │ │ ├── divider.tsx │ │ │ ├── landing-banner.tsx │ │ │ ├── landing-featured-projects.tsx │ │ │ ├── landing-features.tsx │ │ │ ├── landing-hero.tsx │ │ │ ├── landing-images.tsx │ │ │ ├── nf-link-button.tsx │ │ │ └── section.tsx │ │ ├── padding.jsx │ │ ├── platforms.js │ │ ├── required.jsx │ │ ├── rules.jsx │ │ └── talkBack.jsx │ ├── css │ │ └── custom.css │ ├── pages │ │ ├── index.tsx │ │ └── versions.tsx │ ├── react-app-env.d.ts │ └── theme │ │ ├── Admonition.js │ │ ├── DocItem │ │ └── TOC │ │ │ └── Desktop │ │ │ ├── AMASidebar.js │ │ │ └── index.js │ │ ├── MDXComponents.js │ │ └── prism-include-languages.js ├── static │ ├── .nojekyll │ ├── font │ │ ├── InterBold.woff2 │ │ ├── InterMedium.woff2 │ │ └── InterRegular.woff2 │ ├── img │ │ ├── background-banner-x1.png │ │ ├── background-banner.png │ │ ├── docusaurus.png │ │ ├── feature-1.png │ │ ├── feature-2.png │ │ ├── feature-3.png │ │ ├── logo.svg │ │ ├── nearform-icon-white.svg │ │ ├── nearform-icon.svg │ │ ├── nearform-logo-white.svg │ │ ├── nearform-logo.svg │ │ ├── rn-ama-badge.png │ │ ├── undraw_docusaurus_mountain.svg │ │ ├── undraw_docusaurus_react.svg │ │ └── undraw_docusaurus_tree.svg │ ├── themed-archive │ │ ├── background-banner.png │ │ ├── feature-1.png │ │ ├── feature-2.png │ │ └── feature-3.png │ └── videos │ │ ├── reduce-motion-off.mov │ │ ├── reduce-motion-on.mov │ │ ├── sequential-reduce-motion-off.mov │ │ ├── sequential-reduce-motion-on-fixed.mov │ │ └── sequential-reduce-motion-on.mov ├── tailwind.config.ts ├── tsconfig.json ├── versioned_docs │ └── version-0.7.x │ │ ├── ama-console-error.png │ │ ├── ama-demo.png │ │ ├── components │ │ ├── AMAProvider.md │ │ ├── AnimatedContainer.md │ │ ├── AutofocusContainer.md │ │ ├── BottomSheet.md │ │ ├── DynamicFlatList.mdx │ │ ├── ExpandablePressable.mdx │ │ ├── FlatList.mdx │ │ ├── Form.md │ │ ├── FormField.md │ │ ├── FormSubmit.md │ │ ├── ListWrapper.mdx │ │ ├── Pressable.mdx │ │ ├── StaticFlatList.mdx │ │ ├── SwitchListItem.md │ │ ├── SwitchWrapper.mdx │ │ ├── Text.md │ │ ├── TextInput.md │ │ ├── TouchableOpacity.md │ │ ├── TouchableWithoutFeedback.md │ │ ├── _category_.json │ │ └── components.md │ │ ├── hooks │ │ ├── _category_.json │ │ ├── useAMAContext.md │ │ ├── useAnimation.mdx │ │ ├── useAnimationDuration.md │ │ ├── useDynamicList.md │ │ ├── useExpandable.md │ │ ├── useFocus.md │ │ ├── useFormField.md │ │ ├── usePressable.mdx │ │ ├── useReanimatedTiming.md │ │ ├── useSwitch.md │ │ ├── useTextInput.md │ │ └── useTimedAction.md │ │ ├── introduction │ │ ├── _category_.json │ │ ├── config-file.md │ │ ├── getting-started.md │ │ └── usage.md │ │ └── utils │ │ ├── _category_.json │ │ └── isMotionAnimation.md ├── versioned_sidebars │ └── version-0.7.x-sidebars.json ├── versions.json └── yarn.lock └── yarn.lock /.changeset/config.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.changeset/config.json -------------------------------------------------------------------------------- /.eslintrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.eslintrc.js -------------------------------------------------------------------------------- /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.gitattributes -------------------------------------------------------------------------------- /.github/actions/setup/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.github/actions/setup/action.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.github/workflows/run-tests.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.github/workflows/run-tests.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.gitignore -------------------------------------------------------------------------------- /.husky/post-checkout: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.husky/post-checkout -------------------------------------------------------------------------------- /.husky/post-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.husky/post-commit -------------------------------------------------------------------------------- /.husky/post-merge: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.husky/post-merge -------------------------------------------------------------------------------- /.husky/pre-commit: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.husky/pre-commit -------------------------------------------------------------------------------- /.husky/pre-push: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.husky/pre-push -------------------------------------------------------------------------------- /.nvmrc: -------------------------------------------------------------------------------- 1 | v16 -------------------------------------------------------------------------------- /.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.prettierrc.js -------------------------------------------------------------------------------- /.yarn/releases/yarn-3.6.4.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.yarn/releases/yarn-3.6.4.cjs -------------------------------------------------------------------------------- /.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/.yarnrc.yml -------------------------------------------------------------------------------- /CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/CHANGELOG.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/README.md -------------------------------------------------------------------------------- /__mocks__/TestErrorBoundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/__mocks__/TestErrorBoundary.tsx -------------------------------------------------------------------------------- /app.plugin.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/app.plugin.js -------------------------------------------------------------------------------- /babel.base.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/babel.base.js -------------------------------------------------------------------------------- /examples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/README.md -------------------------------------------------------------------------------- /examples/bare/.bundle/config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/.bundle/config -------------------------------------------------------------------------------- /examples/bare/.eslintrc.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | root: true, 3 | extends: '@react-native', 4 | }; 5 | -------------------------------------------------------------------------------- /examples/bare/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/.gitignore -------------------------------------------------------------------------------- /examples/bare/.prettierrc.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/.prettierrc.js -------------------------------------------------------------------------------- /examples/bare/.watchmanconfig: -------------------------------------------------------------------------------- 1 | {} 2 | -------------------------------------------------------------------------------- /examples/bare/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/CHANGELOG.md -------------------------------------------------------------------------------- /examples/bare/Gemfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/Gemfile -------------------------------------------------------------------------------- /examples/bare/Gemfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/Gemfile.lock -------------------------------------------------------------------------------- /examples/bare/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/README.md -------------------------------------------------------------------------------- /examples/bare/__tests__/App.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/__tests__/App.test.tsx -------------------------------------------------------------------------------- /examples/bare/android/app/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/build.gradle -------------------------------------------------------------------------------- /examples/bare/android/app/debug.keystore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/debug.keystore -------------------------------------------------------------------------------- /examples/bare/android/app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/proguard-rules.pro -------------------------------------------------------------------------------- /examples/bare/android/app/src/debug/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/debug/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/java/com/example/rnama/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/java/com/example/rnama/MainActivity.kt -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/java/com/example/rnama/MainApplication.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/java/com/example/rnama/MainApplication.kt -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/drawable/rn_edit_text_material.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/drawable/rn_edit_text_material.xml -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-hdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-mdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-xhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-xhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-xxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.png -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /examples/bare/android/app/src/main/res/values/styles.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/app/src/main/res/values/styles.xml -------------------------------------------------------------------------------- /examples/bare/android/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/build.gradle -------------------------------------------------------------------------------- /examples/bare/android/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/gradle.properties -------------------------------------------------------------------------------- /examples/bare/android/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /examples/bare/android/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /examples/bare/android/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/gradlew -------------------------------------------------------------------------------- /examples/bare/android/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/gradlew.bat -------------------------------------------------------------------------------- /examples/bare/android/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/android/settings.gradle -------------------------------------------------------------------------------- /examples/bare/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/app.json -------------------------------------------------------------------------------- /examples/bare/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/babel.config.js -------------------------------------------------------------------------------- /examples/bare/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/index.js -------------------------------------------------------------------------------- /examples/bare/ios/.xcode.env: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/.xcode.env -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample.xcodeproj/xcshareddata/xcschemes/AMAExample.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample.xcodeproj/xcshareddata/xcschemes/AMAExample.xcscheme -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample.xcworkspace/contents.xcworkspacedata: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample.xcworkspace/contents.xcworkspacedata -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample/AppDelegate.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample/AppDelegate.h -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample/AppDelegate.mm: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample/AppDelegate.mm -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample/Images.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample/Images.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample/Images.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample/Images.xcassets/Contents.json -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample/Info.plist -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample/LaunchScreen.storyboard: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample/LaunchScreen.storyboard -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample/PrivacyInfo.xcprivacy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample/PrivacyInfo.xcprivacy -------------------------------------------------------------------------------- /examples/bare/ios/AMAExample/main.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExample/main.m -------------------------------------------------------------------------------- /examples/bare/ios/AMAExampleTests/AMAExampleTests.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExampleTests/AMAExampleTests.m -------------------------------------------------------------------------------- /examples/bare/ios/AMAExampleTests/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/AMAExampleTests/Info.plist -------------------------------------------------------------------------------- /examples/bare/ios/Podfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/Podfile -------------------------------------------------------------------------------- /examples/bare/ios/Podfile.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/ios/Podfile.lock -------------------------------------------------------------------------------- /examples/bare/jest.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { 2 | preset: 'react-native', 3 | }; 4 | -------------------------------------------------------------------------------- /examples/bare/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/metro.config.js -------------------------------------------------------------------------------- /examples/bare/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/package.json -------------------------------------------------------------------------------- /examples/bare/src/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/src/App.tsx -------------------------------------------------------------------------------- /examples/bare/src/AppNavigator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/src/AppNavigator.tsx -------------------------------------------------------------------------------- /examples/bare/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/src/theme.ts -------------------------------------------------------------------------------- /examples/bare/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/src/types.ts -------------------------------------------------------------------------------- /examples/bare/src/utils/useTypedNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/src/utils/useTypedNavigation.tsx -------------------------------------------------------------------------------- /examples/bare/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/bare/tsconfig.json -------------------------------------------------------------------------------- /examples/expo/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/.gitignore -------------------------------------------------------------------------------- /examples/expo/App.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/App.tsx -------------------------------------------------------------------------------- /examples/expo/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/CHANGELOG.md -------------------------------------------------------------------------------- /examples/expo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/README.md -------------------------------------------------------------------------------- /examples/expo/app.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/app.json -------------------------------------------------------------------------------- /examples/expo/assets/adaptive-icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/assets/adaptive-icon.png -------------------------------------------------------------------------------- /examples/expo/assets/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/assets/favicon.png -------------------------------------------------------------------------------- /examples/expo/assets/icon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/assets/icon.png -------------------------------------------------------------------------------- /examples/expo/assets/splash.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/assets/splash.png -------------------------------------------------------------------------------- /examples/expo/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/babel.config.js -------------------------------------------------------------------------------- /examples/expo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/index.js -------------------------------------------------------------------------------- /examples/expo/metro.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/metro.config.js -------------------------------------------------------------------------------- /examples/expo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/package.json -------------------------------------------------------------------------------- /examples/expo/src/AppNavigation.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/src/AppNavigation.tsx -------------------------------------------------------------------------------- /examples/expo/src/types.ts: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /examples/expo/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/expo/tsconfig.json -------------------------------------------------------------------------------- /examples/shared/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/CHANGELOG.md -------------------------------------------------------------------------------- /examples/shared/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/index.ts -------------------------------------------------------------------------------- /examples/shared/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/package.json -------------------------------------------------------------------------------- /examples/shared/src/assets/fox-1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/assets/fox-1.jpg -------------------------------------------------------------------------------- /examples/shared/src/assets/fox-2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/assets/fox-2.jpg -------------------------------------------------------------------------------- /examples/shared/src/assets/fox-3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/assets/fox-3.jpg -------------------------------------------------------------------------------- /examples/shared/src/assets/images.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/assets/images.ts -------------------------------------------------------------------------------- /examples/shared/src/components/BackButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/components/BackButton.tsx -------------------------------------------------------------------------------- /examples/shared/src/components/CTAPressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/components/CTAPressable.tsx -------------------------------------------------------------------------------- /examples/shared/src/components/CTATouchableOpacity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/components/CTATouchableOpacity.tsx -------------------------------------------------------------------------------- /examples/shared/src/components/CTATouchableWithoutFeedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/components/CTATouchableWithoutFeedback.tsx -------------------------------------------------------------------------------- /examples/shared/src/components/Header.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/components/Header.tsx -------------------------------------------------------------------------------- /examples/shared/src/components/Spacer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/components/Spacer.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/BottomSheet.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/BottomSheet.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/Carousel.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/Carousel.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/ExpandablePressableScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/ExpandablePressableScreen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/FlatList.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/FlatList.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/FlatListDynamic.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/FlatListDynamic.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/FlatListStatic.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/FlatListStatic.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/Form.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/Form.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/Home.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/Home.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/Loading.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/Loading.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/Pressable.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/Pressable.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/SwitchListItemScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/SwitchListItemScreen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/Text.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/Text.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/TouchableOpacity.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/TouchableOpacity.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/TouchableWithoutFeedback.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/TouchableWithoutFeedback.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/UseAMAContext.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/UseAMAContext.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/UseAnimationDurationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/UseAnimationDurationScreen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/UseAnimationScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/UseAnimationScreen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/UseReanimatedAnimationBuilderScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/UseReanimatedAnimationBuilderScreen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/UseReanimatedTimingScreen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/UseReanimatedTimingScreen.tsx -------------------------------------------------------------------------------- /examples/shared/src/screens/UseTimedAction.screen.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/screens/UseTimedAction.screen.tsx -------------------------------------------------------------------------------- /examples/shared/src/theme.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/src/theme.ts -------------------------------------------------------------------------------- /examples/shared/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/tsconfig.build.json -------------------------------------------------------------------------------- /examples/shared/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/examples/shared/tsconfig.json -------------------------------------------------------------------------------- /jest.setup.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/jest.setup.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/package.json -------------------------------------------------------------------------------- /packages/animations/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/CHANGELOG.md -------------------------------------------------------------------------------- /packages/animations/docs/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/animations.md -------------------------------------------------------------------------------- /packages/animations/docs/components/AnimatedContainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/components/AnimatedContainer.md -------------------------------------------------------------------------------- /packages/animations/docs/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/components/_category_.json -------------------------------------------------------------------------------- /packages/animations/docs/hooks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/hooks/_category_.json -------------------------------------------------------------------------------- /packages/animations/docs/hooks/useAnimation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/hooks/useAnimation.mdx -------------------------------------------------------------------------------- /packages/animations/docs/hooks/useAnimationDuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/hooks/useAnimationDuration.md -------------------------------------------------------------------------------- /packages/animations/docs/hooks/useReanimatedAnimationBuilder.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/hooks/useReanimatedAnimationBuilder.md -------------------------------------------------------------------------------- /packages/animations/docs/hooks/useReanimatedTiming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/hooks/useReanimatedTiming.md -------------------------------------------------------------------------------- /packages/animations/docs/utils/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/utils/_category_.json -------------------------------------------------------------------------------- /packages/animations/docs/utils/isMotionAnimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/docs/utils/isMotionAnimation.md -------------------------------------------------------------------------------- /packages/animations/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/package.json -------------------------------------------------------------------------------- /packages/animations/src/components/AnimatedContainer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/components/AnimatedContainer.test.tsx -------------------------------------------------------------------------------- /packages/animations/src/components/AnimatedContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/components/AnimatedContainer.tsx -------------------------------------------------------------------------------- /packages/animations/src/hooks/useAnimation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/hooks/useAnimation.test.ts -------------------------------------------------------------------------------- /packages/animations/src/hooks/useAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/hooks/useAnimation.ts -------------------------------------------------------------------------------- /packages/animations/src/hooks/useAnimationDuration.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/hooks/useAnimationDuration.test.ts -------------------------------------------------------------------------------- /packages/animations/src/hooks/useAnimationDuration.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/hooks/useAnimationDuration.ts -------------------------------------------------------------------------------- /packages/animations/src/hooks/useReanimatedAnimationBuilder.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/hooks/useReanimatedAnimationBuilder.test.ts -------------------------------------------------------------------------------- /packages/animations/src/hooks/useReanimatedAnimationBuilder.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/hooks/useReanimatedAnimationBuilder.ts -------------------------------------------------------------------------------- /packages/animations/src/hooks/useReanimatedTiming.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/hooks/useReanimatedTiming.test.ts -------------------------------------------------------------------------------- /packages/animations/src/hooks/useReanimatedTiming.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/hooks/useReanimatedTiming.ts -------------------------------------------------------------------------------- /packages/animations/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/index.ts -------------------------------------------------------------------------------- /packages/animations/src/utils/isMotionAnimation.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/src/utils/isMotionAnimation.ts -------------------------------------------------------------------------------- /packages/animations/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/tsconfig.build.json -------------------------------------------------------------------------------- /packages/animations/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/animations/tsconfig.json -------------------------------------------------------------------------------- /packages/core/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/CHANGELOG.md -------------------------------------------------------------------------------- /packages/core/docs/components/AMAProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/docs/components/AMAProvider.md -------------------------------------------------------------------------------- /packages/core/docs/components/AutofocusContainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/docs/components/AutofocusContainer.md -------------------------------------------------------------------------------- /packages/core/docs/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/docs/components/_category_.json -------------------------------------------------------------------------------- /packages/core/docs/core.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/docs/core.md -------------------------------------------------------------------------------- /packages/core/docs/hooks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/docs/hooks/_category_.json -------------------------------------------------------------------------------- /packages/core/docs/hooks/useAMAContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/docs/hooks/useAMAContext.md -------------------------------------------------------------------------------- /packages/core/docs/hooks/useFocus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/docs/hooks/useFocus.md -------------------------------------------------------------------------------- /packages/core/docs/hooks/useTimedAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/docs/hooks/useTimedAction.md -------------------------------------------------------------------------------- /packages/core/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/package.json -------------------------------------------------------------------------------- /packages/core/scripts/create-config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/scripts/create-config.ts -------------------------------------------------------------------------------- /packages/core/src/components/AMAProvider.integration.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/components/AMAProvider.integration.test.tsx -------------------------------------------------------------------------------- /packages/core/src/components/AMAProvider.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/components/AMAProvider.test.tsx -------------------------------------------------------------------------------- /packages/core/src/components/AMAProvider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/components/AMAProvider.tsx -------------------------------------------------------------------------------- /packages/core/src/components/AutofocusContainer.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/components/AutofocusContainer.test.tsx -------------------------------------------------------------------------------- /packages/core/src/components/AutofocusContainer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/components/AutofocusContainer.tsx -------------------------------------------------------------------------------- /packages/core/src/components/HideChildrenFromAccessibilityTree.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/components/HideChildrenFromAccessibilityTree.test.tsx -------------------------------------------------------------------------------- /packages/core/src/components/HideChildrenFromAccessibilityTree.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/components/HideChildrenFromAccessibilityTree.tsx -------------------------------------------------------------------------------- /packages/core/src/hooks/useButtonChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/hooks/useButtonChecks.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useChecks.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/hooks/useChecks.test.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useChecks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/hooks/useChecks.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useFocus.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/hooks/useFocus.test.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useFocus.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/hooks/useFocus.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useTimedAction.android.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/hooks/useTimedAction.android.test.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useTimedAction.ios.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/hooks/useTimedAction.ios.test.ts -------------------------------------------------------------------------------- /packages/core/src/hooks/useTimedAction.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/hooks/useTimedAction.ts -------------------------------------------------------------------------------- /packages/core/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/index.ts -------------------------------------------------------------------------------- /packages/core/src/postinstall.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/postinstall.js -------------------------------------------------------------------------------- /packages/core/src/utils/numerify.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/utils/numerify.test.ts -------------------------------------------------------------------------------- /packages/core/src/utils/numerify.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/src/utils/numerify.ts -------------------------------------------------------------------------------- /packages/core/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/tsconfig.build.json -------------------------------------------------------------------------------- /packages/core/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/core/tsconfig.json -------------------------------------------------------------------------------- /packages/extras/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/CHANGELOG.md -------------------------------------------------------------------------------- /packages/extras/docs/components/BottomSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/docs/components/BottomSheet.md -------------------------------------------------------------------------------- /packages/extras/docs/components/Carousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/docs/components/Carousel.md -------------------------------------------------------------------------------- /packages/extras/docs/components/Loading.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/docs/components/Loading.md -------------------------------------------------------------------------------- /packages/extras/docs/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/docs/components/_category_.json -------------------------------------------------------------------------------- /packages/extras/docs/extras.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/docs/extras.md -------------------------------------------------------------------------------- /packages/extras/docs/hooks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/docs/hooks/_category_.json -------------------------------------------------------------------------------- /packages/extras/docs/hooks/useCarousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/docs/hooks/useCarousel.md -------------------------------------------------------------------------------- /packages/extras/docs/hooks/useKeyboard.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/docs/hooks/useKeyboard.md -------------------------------------------------------------------------------- /packages/extras/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/package.json -------------------------------------------------------------------------------- /packages/extras/src/components/BottomSheet.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/components/BottomSheet.test.tsx -------------------------------------------------------------------------------- /packages/extras/src/components/BottomSheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/components/BottomSheet.tsx -------------------------------------------------------------------------------- /packages/extras/src/components/Carousel.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/components/Carousel.tsx -------------------------------------------------------------------------------- /packages/extras/src/components/Loading.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/components/Loading.tsx -------------------------------------------------------------------------------- /packages/extras/src/hooks/useBottomSheetGestureHandler.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/hooks/useBottomSheetGestureHandler.test.ts -------------------------------------------------------------------------------- /packages/extras/src/hooks/useBottomSheetGestureHandler.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/hooks/useBottomSheetGestureHandler.ts -------------------------------------------------------------------------------- /packages/extras/src/hooks/useCarousel.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/hooks/useCarousel.ts -------------------------------------------------------------------------------- /packages/extras/src/hooks/useKeyboard.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/hooks/useKeyboard.ts -------------------------------------------------------------------------------- /packages/extras/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/src/index.ts -------------------------------------------------------------------------------- /packages/extras/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/tsconfig.build.json -------------------------------------------------------------------------------- /packages/extras/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/extras/tsconfig.json -------------------------------------------------------------------------------- /packages/forms/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/CHANGELOG.md -------------------------------------------------------------------------------- /packages/forms/docs/Form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/docs/Form.md -------------------------------------------------------------------------------- /packages/forms/docs/FormField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/docs/FormField.md -------------------------------------------------------------------------------- /packages/forms/docs/FormSubmit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/docs/FormSubmit.md -------------------------------------------------------------------------------- /packages/forms/docs/FormSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/docs/FormSwitch.md -------------------------------------------------------------------------------- /packages/forms/docs/TextInput.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/docs/TextInput.mdx -------------------------------------------------------------------------------- /packages/forms/docs/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/docs/forms.md -------------------------------------------------------------------------------- /packages/forms/docs/useFormField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/docs/useFormField.md -------------------------------------------------------------------------------- /packages/forms/docs/useTextInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/docs/useTextInput.md -------------------------------------------------------------------------------- /packages/forms/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/package.json -------------------------------------------------------------------------------- /packages/forms/src/components/Form.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/Form.test.tsx -------------------------------------------------------------------------------- /packages/forms/src/components/Form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/Form.tsx -------------------------------------------------------------------------------- /packages/forms/src/components/FormField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/FormField.test.tsx -------------------------------------------------------------------------------- /packages/forms/src/components/FormField.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/FormField.tsx -------------------------------------------------------------------------------- /packages/forms/src/components/FormSubmit.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/FormSubmit.test.tsx -------------------------------------------------------------------------------- /packages/forms/src/components/FormSubmit.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/FormSubmit.tsx -------------------------------------------------------------------------------- /packages/forms/src/components/FormSwitch.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/FormSwitch.tsx -------------------------------------------------------------------------------- /packages/forms/src/components/TextInput.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/TextInput.test.tsx -------------------------------------------------------------------------------- /packages/forms/src/components/TextInput.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/components/TextInput.tsx -------------------------------------------------------------------------------- /packages/forms/src/hooks/useFormField.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/hooks/useFormField.test.tsx -------------------------------------------------------------------------------- /packages/forms/src/hooks/useFormField.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/hooks/useFormField.ts -------------------------------------------------------------------------------- /packages/forms/src/hooks/useTextInput.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/hooks/useTextInput.ts -------------------------------------------------------------------------------- /packages/forms/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/src/index.ts -------------------------------------------------------------------------------- /packages/forms/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/tsconfig.build.json -------------------------------------------------------------------------------- /packages/forms/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/forms/tsconfig.json -------------------------------------------------------------------------------- /packages/internal/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/CHANGELOG.md -------------------------------------------------------------------------------- /packages/internal/ama.rules.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/ama.rules.json -------------------------------------------------------------------------------- /packages/internal/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/package.json -------------------------------------------------------------------------------- /packages/internal/src/checks/accessibilityLabelChecker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/accessibilityLabelChecker.test.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/checkAccessibilityRole.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/checkAccessibilityRole.test.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/checkAccessibilityRole.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/checkAccessibilityRole.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/checkFocusTrap.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/checkFocusTrap.test.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/checkFocusTrap.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/checkFocusTrap.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/checkForAccessibilityState.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/checkForAccessibilityState.test.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/checkForAccessibilityState.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/checkForAccessibilityState.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/checkMinimumSize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/checkMinimumSize.test.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/checkMinimumSize.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/checkMinimumSize.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/contrastChecker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/contrastChecker.test.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/contrastChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/contrastChecker.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/noUndefinedProperty.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/noUndefinedProperty.test.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/noUndefinedProperty.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/noUndefinedProperty.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/uppercaseChecker.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/uppercaseChecker.test.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/uppercaseChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/uppercaseChecker.ts -------------------------------------------------------------------------------- /packages/internal/src/checks/uppercaseStringChecker.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/checks/uppercaseStringChecker.ts -------------------------------------------------------------------------------- /packages/internal/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/index.ts -------------------------------------------------------------------------------- /packages/internal/src/types.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/types.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/applyStyle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/applyStyle.test.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/applyStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/applyStyle.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/constants.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/error.style.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/error.style.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/generateAccessibilityStateFromProp.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/generateAccessibilityStateFromProp.test.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/generateAccessibilityStateFromProp.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/generateAccessibilityStateFromProp.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/getPropertyFromStyle.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/getPropertyFromStyle.test.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/getPropertyFromStyle.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/getPropertyFromStyle.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/interpolateAnimation.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/interpolateAnimation.test.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/interpolateAnimationStates.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/interpolateAnimationStates.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/isFocused.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/isFocused.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/logger.rules.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/logger.rules.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/logger.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/logger.test.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/logger.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/logger.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/maybeGenerateStringFromElement.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/maybeGenerateStringFromElement.test.tsx -------------------------------------------------------------------------------- /packages/internal/src/utils/maybeGenerateStringFromElement.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/maybeGenerateStringFromElement.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/minimumTouchableSize.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/minimumTouchableSize.test.ts -------------------------------------------------------------------------------- /packages/internal/src/utils/minimumTouchableSize.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/minimumTouchableSize.tsx -------------------------------------------------------------------------------- /packages/internal/src/utils/platformHelpers.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/src/utils/platformHelpers.ts -------------------------------------------------------------------------------- /packages/internal/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/tsconfig.build.json -------------------------------------------------------------------------------- /packages/internal/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/internal/tsconfig.json -------------------------------------------------------------------------------- /packages/lists/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/CHANGELOG.md -------------------------------------------------------------------------------- /packages/lists/docs/DynamicFlatList.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/docs/DynamicFlatList.mdx -------------------------------------------------------------------------------- /packages/lists/docs/FlatList.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/docs/FlatList.mdx -------------------------------------------------------------------------------- /packages/lists/docs/StaticFlatList.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/docs/StaticFlatList.mdx -------------------------------------------------------------------------------- /packages/lists/docs/lists.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/docs/lists.md -------------------------------------------------------------------------------- /packages/lists/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/package.json -------------------------------------------------------------------------------- /packages/lists/src/components/DynamicFlatList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/src/components/DynamicFlatList.test.tsx -------------------------------------------------------------------------------- /packages/lists/src/components/DynamicFlatList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/src/components/DynamicFlatList.tsx -------------------------------------------------------------------------------- /packages/lists/src/components/FlatList.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/src/components/FlatList.test.tsx -------------------------------------------------------------------------------- /packages/lists/src/components/FlatList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/src/components/FlatList.tsx -------------------------------------------------------------------------------- /packages/lists/src/components/StaticFlatList.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/src/components/StaticFlatList.tsx -------------------------------------------------------------------------------- /packages/lists/src/hooks/useDynamicFlatList.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/src/hooks/useDynamicFlatList.test.ts -------------------------------------------------------------------------------- /packages/lists/src/hooks/useDynamicList.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/src/hooks/useDynamicList.ts -------------------------------------------------------------------------------- /packages/lists/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/src/index.ts -------------------------------------------------------------------------------- /packages/lists/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/tsconfig.build.json -------------------------------------------------------------------------------- /packages/lists/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/lists/tsconfig.json -------------------------------------------------------------------------------- /packages/react-native/CHANGELOG.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/CHANGELOG.md -------------------------------------------------------------------------------- /packages/react-native/docs/components/ExpandablePressable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/components/ExpandablePressable.mdx -------------------------------------------------------------------------------- /packages/react-native/docs/components/Pressable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/components/Pressable.md -------------------------------------------------------------------------------- /packages/react-native/docs/components/SwitchListItem.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/components/SwitchListItem.mdx -------------------------------------------------------------------------------- /packages/react-native/docs/components/SwitchWrapper.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/components/SwitchWrapper.mdx -------------------------------------------------------------------------------- /packages/react-native/docs/components/Text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/components/Text.md -------------------------------------------------------------------------------- /packages/react-native/docs/components/TouchableOpacity.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/components/TouchableOpacity.mdx -------------------------------------------------------------------------------- /packages/react-native/docs/components/TouchableWithoutFeedback.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/components/TouchableWithoutFeedback.mdx -------------------------------------------------------------------------------- /packages/react-native/docs/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/components/_category_.json -------------------------------------------------------------------------------- /packages/react-native/docs/hooks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/hooks/_category_.json -------------------------------------------------------------------------------- /packages/react-native/docs/hooks/useExpandable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/hooks/useExpandable.md -------------------------------------------------------------------------------- /packages/react-native/docs/hooks/usePressable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/hooks/usePressable.mdx -------------------------------------------------------------------------------- /packages/react-native/docs/hooks/useSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/hooks/useSwitch.md -------------------------------------------------------------------------------- /packages/react-native/docs/react-native.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/docs/react-native.md -------------------------------------------------------------------------------- /packages/react-native/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/package.json -------------------------------------------------------------------------------- /packages/react-native/src/components/ExpandablePressable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/ExpandablePressable.test.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/ExpandablePressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/ExpandablePressable.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/Pressable.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/Pressable.test.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/Pressable.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/Pressable.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/SwitchListItem.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/SwitchListItem.test.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/SwitchListItem.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/SwitchListItem.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/SwitchWrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/SwitchWrapper.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/Text.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/Text.test.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/Text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/Text.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/TouchableOpacity.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/TouchableOpacity.test.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/TouchableOpacity.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/TouchableOpacity.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/TouchableWithoutFeedback.test.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/TouchableWithoutFeedback.test.tsx -------------------------------------------------------------------------------- /packages/react-native/src/components/TouchableWithoutFeedback.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/components/TouchableWithoutFeedback.tsx -------------------------------------------------------------------------------- /packages/react-native/src/hooks/useExpandable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/hooks/useExpandable.test.ts -------------------------------------------------------------------------------- /packages/react-native/src/hooks/useExpandable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/hooks/useExpandable.ts -------------------------------------------------------------------------------- /packages/react-native/src/hooks/usePressable.test.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/hooks/usePressable.test.ts -------------------------------------------------------------------------------- /packages/react-native/src/hooks/usePressable.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/hooks/usePressable.ts -------------------------------------------------------------------------------- /packages/react-native/src/hooks/useSwitch.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/hooks/useSwitch.ts -------------------------------------------------------------------------------- /packages/react-native/src/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/src/index.ts -------------------------------------------------------------------------------- /packages/react-native/tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/tsconfig.build.json -------------------------------------------------------------------------------- /packages/react-native/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/packages/react-native/tsconfig.json -------------------------------------------------------------------------------- /react-native-ama-Hero.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/react-native-ama-Hero.png -------------------------------------------------------------------------------- /react-native-ama.podspec: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/react-native-ama.podspec -------------------------------------------------------------------------------- /scripts/build-all.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | cd packages/core && yarn build 4 | -------------------------------------------------------------------------------- /scripts/init.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/scripts/init.sh -------------------------------------------------------------------------------- /tsconfig.build.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/tsconfig.build.json -------------------------------------------------------------------------------- /tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/tsconfig.json -------------------------------------------------------------------------------- /website/.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/.gitattributes -------------------------------------------------------------------------------- /website/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/.gitignore -------------------------------------------------------------------------------- /website/.yarn/releases/yarn-3.6.4.cjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/.yarn/releases/yarn-3.6.4.cjs -------------------------------------------------------------------------------- /website/.yarnrc.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/.yarnrc.yml -------------------------------------------------------------------------------- /website/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/README.md -------------------------------------------------------------------------------- /website/babel.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/babel.config.js -------------------------------------------------------------------------------- /website/checklist/bottom-sheet-drawer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/bottom-sheet-drawer.md -------------------------------------------------------------------------------- /website/checklist/bottom-tab-navigator.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/bottom-tab-navigator.md -------------------------------------------------------------------------------- /website/checklist/bottomsheet.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/bottomsheet.excalidraw -------------------------------------------------------------------------------- /website/checklist/bottomsheet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/bottomsheet.png -------------------------------------------------------------------------------- /website/checklist/button.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/button.md -------------------------------------------------------------------------------- /website/checklist/button.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/button.png -------------------------------------------------------------------------------- /website/checklist/buttons.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/buttons.excalidraw -------------------------------------------------------------------------------- /website/checklist/carousel.md: -------------------------------------------------------------------------------- 1 | --- 2 | displayed_sidebar: checklist 3 | --- 4 | 5 | # Carousel 6 | -------------------------------------------------------------------------------- /website/checklist/focus.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/focus.excalidraw -------------------------------------------------------------------------------- /website/checklist/focus.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/focus.gif -------------------------------------------------------------------------------- /website/checklist/focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/focus.md -------------------------------------------------------------------------------- /website/checklist/form-disabled.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/form-disabled.png -------------------------------------------------------------------------------- /website/checklist/form-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/form-error.png -------------------------------------------------------------------------------- /website/checklist/form-focused.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/form-focused.png -------------------------------------------------------------------------------- /website/checklist/form-selected.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/form-selected.png -------------------------------------------------------------------------------- /website/checklist/form.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/form.excalidraw -------------------------------------------------------------------------------- /website/checklist/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/forms.md -------------------------------------------------------------------------------- /website/checklist/grid.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/grid.excalidraw -------------------------------------------------------------------------------- /website/checklist/grid.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/grid.png -------------------------------------------------------------------------------- /website/checklist/headers.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/headers.excalidraw -------------------------------------------------------------------------------- /website/checklist/headers.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/headers.png -------------------------------------------------------------------------------- /website/checklist/headings.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/headings.md -------------------------------------------------------------------------------- /website/checklist/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/index.md -------------------------------------------------------------------------------- /website/checklist/list-grids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/list-grids.md -------------------------------------------------------------------------------- /website/checklist/tabbar.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/tabbar.excalidraw -------------------------------------------------------------------------------- /website/checklist/tabbar.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/tabbar.png -------------------------------------------------------------------------------- /website/checklist/text.excalidraw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/text.excalidraw -------------------------------------------------------------------------------- /website/checklist/text.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/text.gif -------------------------------------------------------------------------------- /website/checklist/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/text.md -------------------------------------------------------------------------------- /website/checklist/timed-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/checklist/timed-actions.md -------------------------------------------------------------------------------- /website/docs/ama-console-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/docs/ama-console-error.png -------------------------------------------------------------------------------- /website/docs/ama/ama-console-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/docs/ama/ama-console-error.png -------------------------------------------------------------------------------- /website/docs/ama/ama-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/docs/ama/ama-demo.png -------------------------------------------------------------------------------- /website/docs/ama/config-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/docs/ama/config-file.md -------------------------------------------------------------------------------- /website/docs/ama/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/docs/ama/getting-started.md -------------------------------------------------------------------------------- /website/docs/ama/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/docs/ama/index.md -------------------------------------------------------------------------------- /website/docs/ama/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/docs/ama/usage.md -------------------------------------------------------------------------------- /website/docusaurus.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/docusaurus.config.ts -------------------------------------------------------------------------------- /website/guidelines/accessibility-hint.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/accessibility-hint.md -------------------------------------------------------------------------------- /website/guidelines/accessibility-label.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/accessibility-label.md -------------------------------------------------------------------------------- /website/guidelines/accessibility-role.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/accessibility-role.md -------------------------------------------------------------------------------- /website/guidelines/accessibility-states.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/accessibility-states.md -------------------------------------------------------------------------------- /website/guidelines/android-list-feature.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/android-list-feature.gif -------------------------------------------------------------------------------- /website/guidelines/animations.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/animations.md -------------------------------------------------------------------------------- /website/guidelines/bottomsheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/bottomsheet.md -------------------------------------------------------------------------------- /website/guidelines/carousel.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/carousel.md -------------------------------------------------------------------------------- /website/guidelines/contrast.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/contrast.md -------------------------------------------------------------------------------- /website/guidelines/email-field-with-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/email-field-with-error.png -------------------------------------------------------------------------------- /website/guidelines/focus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/focus.md -------------------------------------------------------------------------------- /website/guidelines/forms.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/forms.md -------------------------------------------------------------------------------- /website/guidelines/grouping.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/grouping.md -------------------------------------------------------------------------------- /website/guidelines/headers.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/headers.md -------------------------------------------------------------------------------- /website/guidelines/index.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/index.md -------------------------------------------------------------------------------- /website/guidelines/lists-grids.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/lists-grids.md -------------------------------------------------------------------------------- /website/guidelines/minimum-size.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/minimum-size.md -------------------------------------------------------------------------------- /website/guidelines/next-key.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/next-key.jpg -------------------------------------------------------------------------------- /website/guidelines/pour.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/pour.md -------------------------------------------------------------------------------- /website/guidelines/text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/text.md -------------------------------------------------------------------------------- /website/guidelines/timed-actions.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/timed-actions.md -------------------------------------------------------------------------------- /website/guidelines/type-of-accessibility-issues.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/guidelines/type-of-accessibility-issues.md -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/package.json -------------------------------------------------------------------------------- /website/sidebars.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/sidebars.ts -------------------------------------------------------------------------------- /website/sidebarsPackages.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/sidebarsPackages.ts -------------------------------------------------------------------------------- /website/src/components/AMASection.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/AMASection.jsx -------------------------------------------------------------------------------- /website/src/components/devOnly.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/devOnly.jsx -------------------------------------------------------------------------------- /website/src/components/feature.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/feature.js -------------------------------------------------------------------------------- /website/src/components/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/index.js -------------------------------------------------------------------------------- /website/src/components/landing/divider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/landing/divider.tsx -------------------------------------------------------------------------------- /website/src/components/landing/landing-banner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/landing/landing-banner.tsx -------------------------------------------------------------------------------- /website/src/components/landing/landing-featured-projects.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/landing/landing-featured-projects.tsx -------------------------------------------------------------------------------- /website/src/components/landing/landing-features.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/landing/landing-features.tsx -------------------------------------------------------------------------------- /website/src/components/landing/landing-hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/landing/landing-hero.tsx -------------------------------------------------------------------------------- /website/src/components/landing/landing-images.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/landing/landing-images.tsx -------------------------------------------------------------------------------- /website/src/components/landing/nf-link-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/landing/nf-link-button.tsx -------------------------------------------------------------------------------- /website/src/components/landing/section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/landing/section.tsx -------------------------------------------------------------------------------- /website/src/components/padding.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/padding.jsx -------------------------------------------------------------------------------- /website/src/components/platforms.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/platforms.js -------------------------------------------------------------------------------- /website/src/components/required.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/required.jsx -------------------------------------------------------------------------------- /website/src/components/rules.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/rules.jsx -------------------------------------------------------------------------------- /website/src/components/talkBack.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/components/talkBack.jsx -------------------------------------------------------------------------------- /website/src/css/custom.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/css/custom.css -------------------------------------------------------------------------------- /website/src/pages/index.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/pages/index.tsx -------------------------------------------------------------------------------- /website/src/pages/versions.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/pages/versions.tsx -------------------------------------------------------------------------------- /website/src/react-app-env.d.ts: -------------------------------------------------------------------------------- 1 | declare module "*.png"; 2 | -------------------------------------------------------------------------------- /website/src/theme/Admonition.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/theme/Admonition.js -------------------------------------------------------------------------------- /website/src/theme/DocItem/TOC/Desktop/AMASidebar.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/theme/DocItem/TOC/Desktop/AMASidebar.js -------------------------------------------------------------------------------- /website/src/theme/DocItem/TOC/Desktop/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/theme/DocItem/TOC/Desktop/index.js -------------------------------------------------------------------------------- /website/src/theme/MDXComponents.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/theme/MDXComponents.js -------------------------------------------------------------------------------- /website/src/theme/prism-include-languages.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/src/theme/prism-include-languages.js -------------------------------------------------------------------------------- /website/static/.nojekyll: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/font/InterBold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/font/InterBold.woff2 -------------------------------------------------------------------------------- /website/static/font/InterMedium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/font/InterMedium.woff2 -------------------------------------------------------------------------------- /website/static/font/InterRegular.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/font/InterRegular.woff2 -------------------------------------------------------------------------------- /website/static/img/background-banner-x1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/background-banner-x1.png -------------------------------------------------------------------------------- /website/static/img/background-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/background-banner.png -------------------------------------------------------------------------------- /website/static/img/docusaurus.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/docusaurus.png -------------------------------------------------------------------------------- /website/static/img/feature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/feature-1.png -------------------------------------------------------------------------------- /website/static/img/feature-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/feature-2.png -------------------------------------------------------------------------------- /website/static/img/feature-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/feature-3.png -------------------------------------------------------------------------------- /website/static/img/logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/logo.svg -------------------------------------------------------------------------------- /website/static/img/nearform-icon-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/nearform-icon-white.svg -------------------------------------------------------------------------------- /website/static/img/nearform-icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/nearform-icon.svg -------------------------------------------------------------------------------- /website/static/img/nearform-logo-white.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/nearform-logo-white.svg -------------------------------------------------------------------------------- /website/static/img/nearform-logo.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/nearform-logo.svg -------------------------------------------------------------------------------- /website/static/img/rn-ama-badge.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/rn-ama-badge.png -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_mountain.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/undraw_docusaurus_mountain.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_react.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/undraw_docusaurus_react.svg -------------------------------------------------------------------------------- /website/static/img/undraw_docusaurus_tree.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/img/undraw_docusaurus_tree.svg -------------------------------------------------------------------------------- /website/static/themed-archive/background-banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/themed-archive/background-banner.png -------------------------------------------------------------------------------- /website/static/themed-archive/feature-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/themed-archive/feature-1.png -------------------------------------------------------------------------------- /website/static/themed-archive/feature-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/themed-archive/feature-2.png -------------------------------------------------------------------------------- /website/static/themed-archive/feature-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/themed-archive/feature-3.png -------------------------------------------------------------------------------- /website/static/videos/reduce-motion-off.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/videos/reduce-motion-off.mov -------------------------------------------------------------------------------- /website/static/videos/reduce-motion-on.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/videos/reduce-motion-on.mov -------------------------------------------------------------------------------- /website/static/videos/sequential-reduce-motion-off.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/videos/sequential-reduce-motion-off.mov -------------------------------------------------------------------------------- /website/static/videos/sequential-reduce-motion-on-fixed.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/videos/sequential-reduce-motion-on-fixed.mov -------------------------------------------------------------------------------- /website/static/videos/sequential-reduce-motion-on.mov: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/static/videos/sequential-reduce-motion-on.mov -------------------------------------------------------------------------------- /website/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/tailwind.config.ts -------------------------------------------------------------------------------- /website/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/tsconfig.json -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/ama-console-error.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/ama-console-error.png -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/ama-demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/ama-demo.png -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/AMAProvider.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/AMAProvider.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/AnimatedContainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/AnimatedContainer.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/AutofocusContainer.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/AutofocusContainer.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/BottomSheet.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/BottomSheet.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/DynamicFlatList.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/DynamicFlatList.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/ExpandablePressable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/ExpandablePressable.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/FlatList.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/FlatList.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/Form.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/Form.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/FormField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/FormField.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/FormSubmit.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/FormSubmit.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/ListWrapper.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/ListWrapper.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/Pressable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/Pressable.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/StaticFlatList.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/StaticFlatList.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/SwitchListItem.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/SwitchListItem.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/SwitchWrapper.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/SwitchWrapper.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/Text.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/Text.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/TextInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/TextInput.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/TouchableOpacity.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/TouchableOpacity.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/TouchableWithoutFeedback.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/TouchableWithoutFeedback.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/_category_.json -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/components/components.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/components/components.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/_category_.json -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useAMAContext.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useAMAContext.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useAnimation.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useAnimation.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useAnimationDuration.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useAnimationDuration.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useDynamicList.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useDynamicList.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useExpandable.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useExpandable.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useFocus.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useFocus.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useFormField.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useFormField.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/usePressable.mdx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/usePressable.mdx -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useReanimatedTiming.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useReanimatedTiming.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useSwitch.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useSwitch.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useTextInput.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useTextInput.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/hooks/useTimedAction.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/hooks/useTimedAction.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/introduction/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/introduction/_category_.json -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/introduction/config-file.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/introduction/config-file.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/introduction/getting-started.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/introduction/getting-started.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/introduction/usage.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/introduction/usage.md -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/utils/_category_.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/utils/_category_.json -------------------------------------------------------------------------------- /website/versioned_docs/version-0.7.x/utils/isMotionAnimation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_docs/version-0.7.x/utils/isMotionAnimation.md -------------------------------------------------------------------------------- /website/versioned_sidebars/version-0.7.x-sidebars.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/versioned_sidebars/version-0.7.x-sidebars.json -------------------------------------------------------------------------------- /website/versions.json: -------------------------------------------------------------------------------- 1 | ["0.7.x"] 2 | -------------------------------------------------------------------------------- /website/yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/website/yarn.lock -------------------------------------------------------------------------------- /yarn.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FormidableLabs/react-native-ama/HEAD/yarn.lock --------------------------------------------------------------------------------