Skip to content

Commit 85c4fb2

Browse files
committed
Remove unnecessary escaping from README
1 parent 7c32e0c commit 85c4fb2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -50,10 +50,10 @@ function CityPicker() {
5050
| `onChange` | `(index: number) => void` | Handler that is called when the selected option changes. |
5151
| `visibleRest` | `number` | Amount of additional options that are visible in each direction. Default is 2, resulting in 5 visible options. |
5252
| `itemHeight` | `number` | Height of each option in the picker. Default is 40. |
53-
| `itemStyle` | `StyleProp\<ViewStyle\>` | Style for the option's container. |
54-
| `itemTextStyle` | `StyleProp\<TextStyle\>` | Style for the option's text. |
55-
| `containerStyle` | `StyleProp\<ViewStyle\>` | Style of the picker. |
56-
| `selectedIndicatorStyle` | `StyleProp\<ViewStyle\>` | Style of overlaying selected-indicator in the middle of the picker. |
53+
| `itemStyle` | `StyleProp<ViewStyle>` | Style for the option's container. |
54+
| `itemTextStyle` | `StyleProp<TextStyle>` | Style for the option's text. |
55+
| `containerStyle` | `StyleProp<ViewStyle>` | Style of the picker. |
56+
| `selectedIndicatorStyle` | `StyleProp<ViewStyle>` | Style of overlaying selected-indicator in the middle of the picker. |
5757
| `rotationFunction` | `(x: number) => number ` | Function to determine the x rotation of items based on their current distance to the center (which is x). Default is ![rotation equation](https://latex.codecogs.com/gif.latex?%5Csmall%20f%28x%29%20%3D%201%20-%20%5Cleft%20%28%201%5Cover2%20%5Cright%20%29%20%5E%7Bx%7D) |
5858
| `opacityFunction` | `(x: number) => number` | Function to determine the opacity of items based on their current distance to the center (which is x). Default is ![opacity equation](https://latex.codecogs.com/gif.latex?%5Csmall%20f%28x%29%20%3D%20%5Cleft%20%28%201%5Cover3%20%5Cright%20%29%20%5E%7Bx%7D) |
5959
| `decelerationRate` | "normal", "fast", number | How quickly the underlying scroll view decelerates after the user lifts their finger. See the [ScrollView docs](https://facebook.github.io/react-native/docs/scrollview.html#decelerationrate). Default is "fast". |

0 commit comments

Comments
 (0)