|
|
@@ -7,10 +7,10 @@ import { connect } from 'react-redux';
|
|
7
|
7
|
|
|
8
|
8
|
import { hideDialog, BottomSheet } from '../../../base/dialog';
|
|
9
|
9
|
import { translate } from '../../../base/i18n';
|
|
10
|
|
-
|
|
11
|
10
|
import { Icon } from '../../../base/font-icons';
|
|
|
11
|
+import { ColorPalette } from '../../../base/styles';
|
|
12
|
12
|
|
|
13
|
|
-import styles, { UNDERLAY_COLOR } from './styles';
|
|
|
13
|
+import styles from './styles';
|
|
14
|
14
|
|
|
15
|
15
|
/**
|
|
16
|
16
|
* Type definition for a single entry in the device list.
|
|
|
@@ -210,7 +210,7 @@ class AudioRoutePickerDialog extends Component<Props, State> {
|
|
210
|
210
|
<TouchableHighlight
|
|
211
|
211
|
key = { device.type }
|
|
212
|
212
|
onPress = { this._onSelectDeviceFn(device) }
|
|
213
|
|
- underlayColor = { UNDERLAY_COLOR } >
|
|
|
213
|
+ underlayColor = { ColorPalette.overflowMenuItemUnderlay } >
|
|
214
|
214
|
<View style = { styles.deviceRow } >
|
|
215
|
215
|
<Icon
|
|
216
|
216
|
name = { iconName }
|