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 c0aef5e commit 9dd63aeCopy full SHA for 9dd63ae
src/slider/slider.android.ts
@@ -86,6 +86,8 @@ export class Slider extends View {
86
}
87
});
88
nativeView.addOnChangeListener(this.listener);
89
+ nativeView.setValueFrom(this.minValue);
90
+ nativeView.setValueTo(this.maxValue);
91
92
disposeNativeView() {
93
if (this.listener) {
@@ -135,7 +137,7 @@ export class Slider extends View {
135
137
136
138
139
[valueProperty.setNative](value) {
- this.nativeViewProtected.setValueTo(this.maxValue);
140
+ // this.nativeViewProtected.setValueTo(this.maxValue);
141
this.nativeViewProtected.setValue(value);
142
143
[minValueProperty.setNative](value) {
0 commit comments