|
@@ -1,8 +1,7 @@
|
1
|
1
|
// @flow
|
2
|
2
|
|
3
|
|
-import Slider from '@react-native-community/slider';
|
4
|
3
|
import React, { Component } from 'react';
|
5
|
|
-import { View } from 'react-native';
|
|
4
|
+import { Slider, View } from 'react-native';
|
6
|
5
|
import { withTheme } from 'react-native-paper';
|
7
|
6
|
|
8
|
7
|
import { Icon, IconVolumeEmpty } from '../../../base/icons';
|
|
@@ -93,6 +92,7 @@ class VolumeSlider extends Component<Props, State> {
|
93
|
92
|
minimumValue = { 0 }
|
94
|
93
|
onValueChange = { this._onVolumeChange }
|
95
|
94
|
style = { styles.sliderContainer }
|
|
95
|
+ thumbTintColor = { palette.field02 }
|
96
|
96
|
value = { volumeLevel } />
|
97
|
97
|
</View>
|
98
|
98
|
|