Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions docs/activityindicator.md
Original file line number Diff line number Diff line change
Expand Up @@ -104,9 +104,9 @@ Whether to show the indicator (`true`) or hide it (`false`).

The foreground color of the spinner.

| Type | Default |
| ------------------------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| enum(null, string, NativeColorValue) | `null` (system accent default color)<div class="label android">Android</div><hr/>`'#999999'`<ins style="background: #999999" class="color-box"></ins><div class="label ios">iOS</div> |
| Type | Default |
| ------------------ | ------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [color](colors.md) | `null` (system accent default color)<div class="label android">Android</div><hr/>`'#999999'`<ins style="background: #999999" class="color-box"></ins><div class="label ios">iOS</div> |

---

Expand Down
6 changes: 3 additions & 3 deletions docs/button.md
Original file line number Diff line number Diff line change
Expand Up @@ -145,9 +145,9 @@ Text to display for blindness accessibility features.

Color of the text (iOS), or background color of the button (Android).

| Type | Default |
| ------------------------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| enum(null, string, NativeColorValue) | `'#2196F3'`<ins style="background: #2196F3" class="color-box"></ins><div class="label android">Android</div><hr/>`'#007AFF'`<ins style="background: #007AFF" class="color-box"></ins><div class="label ios">iOS</div> |
| Type | Default |
| ------------------ | --------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- |
| [color](colors.md) | `'#2196F3'`<ins style="background: #2196F3" class="color-box"></ins><div class="label android">Android</div><hr/>`'#007AFF'`<ins style="background: #007AFF" class="color-box"></ins><div class="label ios">iOS</div> |

---

Expand Down
20 changes: 10 additions & 10 deletions docs/flatlist.md
Original file line number Diff line number Diff line change
Expand Up @@ -202,9 +202,9 @@ Inherits [ScrollView Props](scrollview.md#props), unless it is nested in another

For simplicity, data is a plain array. If you want to use something else, like an immutable list, use the underlying [`VirtualizedList`](virtualizedlist.md) directly.

| Type |
| ----------------------- |
| `$ReadOnlyArray<ItemT>` |
| Type |
| ----- |
| array |

---

Expand Down Expand Up @@ -236,19 +236,19 @@ Used to extract a unique key for a given item at the specified index. Key is use

Optional custom style for multi-item rows generated when `numColumns > 1`.

| Type |
| -------------------------------------------------------------------- |
| enum(null, void, T, false, '', \$ReadOnlyArray<GenericStyleProp<T>>) |
| Type |
| ------------ |
| style object |

---

### `extraData`

A marker property for telling the list to re-render (since it implements `PureComponent`). If any of your `renderItem`, Header, Footer, etc. functions depend on anything outside of the `data` prop, stick it here and treat it immutably.

| Type |
| ---- |
| any |
| Type |
| -------- |
| function |

---

Expand Down Expand Up @@ -496,7 +496,7 @@ Valid `params` keys are:

- 'animated' (boolean) - Whether the list should do an animation while scrolling. Defaults to `true`.
- 'item' (ItemT) - The item to scroll to. Required.
- 'viewPosition' (number) - Missing desc
- 'viewPosition' (number)

---

Expand Down
24 changes: 12 additions & 12 deletions docs/refreshcontrol.md
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,9 @@ Called when the view starts refreshing.

The background color of the refresh indicator.

| Type |
| ------------------------------------ |
| enum(null, string, NativeColorValue) |
| Type |
| ------------------ |
| [color](colors.md) |

---

Expand All @@ -137,19 +137,19 @@ Progress view top offset

Size of the refresh indicator.

| Type | Default |
| ------------------------------------------------------------------------------------ | ---------------------------------- |
| enum(typeof RefreshLayoutConsts.SIZE.DEFAULT, typeof RefreshLayoutConsts.SIZE.LARGE) | `RefreshLayoutConsts.SIZE.DEFAULT` |
| Type | Default |
| ---------------------------------------------------------------- | ---------------------------------- |
| [RefreshControl.SIZE](refreshcontrol.md#refreshlayoutconstssize) | `RefreshLayoutConsts.SIZE.DEFAULT` |

---

### `tintColor`<div class="label ios">iOS</div>

The color of the refresh indicator.

| Type |
| ------------------------------------ |
| enum(null, string, NativeColorValue) |
| Type |
| ------------------ |
| [color](colors.md) |

---

Expand All @@ -167,6 +167,6 @@ The title displayed under the refresh indicator.

The color of the refresh indicator title.

| Type |
| ------------------------------------ |
| enum(null, string, NativeColorValue) |
| Type |
| ------------------ |
| [color](colors.md) |
Loading