Skip to content

Commit

Permalink
Remove unnecessary escaping from README
Browse files Browse the repository at this point in the history
  • Loading branch information
erksch committed Jul 30, 2022
1 parent 7c32e0c commit 85c4fb2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -50,10 +50,10 @@ function CityPicker() {
| `onChange` | `(index: number) => void` | Handler that is called when the selected option changes. |
| `visibleRest` | `number` | Amount of additional options that are visible in each direction. Default is 2, resulting in 5 visible options. |
| `itemHeight` | `number` | Height of each option in the picker. Default is 40. |
| `itemStyle` | `StyleProp\<ViewStyle\>` | Style for the option's container. |
| `itemTextStyle` | `StyleProp\<TextStyle\>` | Style for the option's text. |
| `containerStyle` | `StyleProp\<ViewStyle\>` | Style of the picker. |
| `selectedIndicatorStyle` | `StyleProp\<ViewStyle\>` | Style of overlaying selected-indicator in the middle of the picker. |
| `itemStyle` | `StyleProp<ViewStyle>` | Style for the option's container. |
| `itemTextStyle` | `StyleProp<TextStyle>` | Style for the option's text. |
| `containerStyle` | `StyleProp<ViewStyle>` | Style of the picker. |
| `selectedIndicatorStyle` | `StyleProp<ViewStyle>` | Style of overlaying selected-indicator in the middle of the picker. |
| `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) |
| `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) |
| `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". |
Expand Down

0 comments on commit 85c4fb2

Please sign in to comment.