Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[WIP] RN Core Parity Table #56

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
62 changes: 62 additions & 0 deletions CoreParityStatus.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,62 @@
# Components

| Name | Prop/Method | Status | Notes |
| -------------------- | ------------------------ | ------ | -------------------------------------------------------------------- |
| ActivityIndicator | | ✅ | |
| | `animating` | ✅ | |
| | `color` | ✅ | |
| | `size` | ✅ | |
| | `hidesWhenStopped` | ✅ | |
| Button | | ⚠️ | |
| | `onPress` | ✅ | |
| | `title` | ✅ | |
| | `accessibilityLabel` | ❌ | Requires accessibility plan |
| | `color` | ✅ | |
| | `disabled` | ✅ | |
| | `hasTVPreferredFocus` | 🚫 | TVOS only |
| DatePickerIOS | | 🚫 | iOS only |
| DrawerLayoutAndroid | | 🚫 | Android only |
| FlatList | | ⚠️ | JS-only component so no direct native implementation required, buggy |
| Image | | ⚠️ | |
| | `style.tintColor` | ✅ | |
| | `style.overlayColor` | 🚫 | Android only |
| | `style.resizeMode` | ✅ | |
| | `blurRadius` | ✅ | |
| | `onLayout` | ✅ | |
| | `onLoad` | ✅ | |
| | `onLoadEnd` | ✅ | |
| | `onLoadStart` | ✅ | |
| | `resizeMode` | ✅ | |
| | `source` | ✅ | |
| | `loadingIndicatorSource` | ❌ | |
| | `onError` | ⚠️ | Buggy |
| | `resizeMethod` | 🚫 | Android only |
| | `accessibilityLabel` | ❌ | Requires accessibility plan |
| | `accessible` | ❌ | Requires accessibility plan |
| | `defaultSource` | 🚫 | iOS only |
| | `onPartialLoad` | 🚫 | iOS only |
| | `onProgress` | 🚫 | iOS only |
| | `fadeDuration` | 🚫 | Android only |
| | `getSize()` | ✅ | |
| | `prefetch()` | ✅ | |
| | `abortPrefetch()` | 🚫 | Android only |
| | `queryCache()` | ❌ | |
| | `resolveAssetSource()` | ✅ | |
| InputAccessoryView | | 🚫 | iOS only |
| KeyboardAvoidingView | | ❌ | Not really possible with current DOM APIs |
| ListView | | ✅ | JS-only component |
| MaskedViewIOS | | 🚫 | iOS only |
| Modal | | ❌ | |
| NavigatorIOS | | 🚫 | iOS only |
| Picker | | ❌ | WIP PR: #46 |
| | onValueChange | ❌ | |
| | enabled | ❌ | |
| | mode | 🚫 | Android only |
| | prompt | 🚫 | Android only |
| | itemStyle | 🚫 | iOS only |
| PickerIOS | | 🚫 | iOS only |
| ProgressBarAndroid | | 🚫 | Android only |
| ProgressViewIOS | | 🚫 | iOS only |
| RefreshControl | | ❌ | |
| SafeAreaView | | ⚠️ | Currently shimmed to `View` |
| ScrollView | | ⚠️ | |