mirror of
https://github.com/ecency/ecency-mobile.git
synced 2024-12-19 19:31:54 +03:00
using color from theme for dropdown highlight
This commit is contained in:
parent
e10be208b5
commit
abfca0b6f1
@ -1,5 +1,6 @@
|
|||||||
import React from 'react';
|
import React from 'react';
|
||||||
import { View, Text, TouchableHighlight, ActivityIndicator } from 'react-native';
|
import { View, Text, TouchableHighlight, ActivityIndicator } from 'react-native';
|
||||||
|
import EStyleSheet from 'react-native-extended-stylesheet';
|
||||||
|
|
||||||
// External components
|
// External components
|
||||||
import ModalDropdown from 'react-native-modal-dropdown';
|
import ModalDropdown from 'react-native-modal-dropdown';
|
||||||
@ -25,7 +26,10 @@ const renderDropdownRow = (
|
|||||||
noHighlight,
|
noHighlight,
|
||||||
dropdownRowWrapper,
|
dropdownRowWrapper,
|
||||||
) => (
|
) => (
|
||||||
<TouchableHighlight style={styles.rowWrapper} underlayColor="#E9F2FC">
|
<TouchableHighlight
|
||||||
|
style={styles.rowWrapper}
|
||||||
|
underlayColor={EStyleSheet.value('$modalBackground')}
|
||||||
|
>
|
||||||
<View
|
<View
|
||||||
style={[
|
style={[
|
||||||
styles.dropdownRow,
|
styles.dropdownRow,
|
||||||
|
Loading…
Reference in New Issue
Block a user