Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/oxwazz/hello-react-native
https://github.com/oxwazz/hello-react-native
Last synced: about 1 month ago
JSON representation
- Host: GitHub
- URL: https://github.com/oxwazz/hello-react-native
- Owner: oxwazz
- Created: 2024-11-21T08:42:12.000Z (about 2 months ago)
- Default Branch: main
- Last Pushed: 2024-11-23T11:20:30.000Z (about 2 months ago)
- Last Synced: 2024-11-23T12:24:49.304Z (about 2 months ago)
- Language: TypeScript
- Size: 247 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hello React Native
from 'react-native'
```├── 🟡 (View Props)
├── ✅ animating:
│ └── ✅ (bool) true
├── ✅ color:
│ ├── ✅ [Android] (string) null (system accent default color)
│ └── ✅ [iOS] (string)'#999999'
├── ✅ hidesWhenStopped: [iOS]
│ └── ✅ true
├── ✅ size:
├── ✅ ('small' | 'large') 'small'
└── ✅ [Android] (number)├── ✅ [Required] onPress:
│ └── ✅ ({nativeEvent: PressEvent})
├── ✅ [Required] title:
│ └── ✅ (string)
├── ✅ accessibilityLabel:
│ └── ✅ (string)
├── ❓ accessibilityLanguage: [iOS]
│ └── ❓ (string)
├── ❓ accessibilityActions:
│ └── ❓ (array)
├── ❓ onAccessibilityAction:
│ └── ❓ (function)
├── ✅ color:
│ ├── ✅ [Android] (string) '#2196F3'
│ └── ✅ [iOS] (string) '#007AFF'
├── ✅ disabled:
│ └── ✅ (bool) false
├── ✅ hasTVPreferredFocus: [TV]
│ └── ✅ (bool) false
├── ❓ nextFocusDown: [Android] [TV]
│ └── ❓ (number)
├── ❓ nextFocusForward: [Android] [TV]
│ └── ❓ (number)
├── ❓ nextFocusLeft: [Android] [TV]
│ └── ❓ (number)
├── ❓ nextFocusRight: [Android] [TV]
│ └── ❓ (number)
├── ❓ nextFocusUp: [Android] [TV]
│ └── ❓ (number)
├── ✅ testID:
│ └── ✅ (string)
└── ✅ touchSoundDisabled: [Android]
└── ✅ (bool) false
ongoing...
```