We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 56289aa commit ec92a20Copy full SHA for ec92a20
example-web/src/Examples.tsx
@@ -108,7 +108,7 @@ export const examples: Props[] = [
108
{
109
title: 'step: 0.25, tap to seek on iOS',
110
render(): React.ReactElement {
111
- return <SliderExample step={0.25} maximumValue={1} tapToSeek={true} />;
+ return <SliderExample step={0.25} tapToSeek={true} />;
112
},
113
114
example-web/src/Props.tsx
@@ -101,7 +101,7 @@ export const propsExamples: Props[] = [
101
102
title: 'minimumValue',
103
render() {
104
- return <SliderExample minimumValue={5} />;
+ return <SliderExample minimumValue={-5} />;
105
106
107
0 commit comments