renrizzolo/react-native-sectioned-multi-select

Request: Styles Image Labeling ?

elibroftw opened this issue · 3 comments

To make styling easier, may I ask a diagram with labels for each key be provided? I'm trying to style the chevron portion of the dropdown and it's annoying having to guess and check the keys.

image
How do I make the white part of the parent black?

This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days.

One of these did the trick:

const selectColors = { primary: theme.colors.primary, text: theme.colors.onSurface, subText: theme.colors.onSurface, itemBackground: theme.colors.surface, subItemBackground: theme.colors.surface, searchSelectionColor: theme.colors.onBackground };
    const selectStyles = {
        selectToggle: {
            backgroundColor: theme.colors.elevation,
            borderRadius: 5,
            padding: 5,
            borderColor: theme.colors.backdrop,
            borderWidth: 1
        },
        selectToggleText: {
            color: theme.colors.onBackground
        },
        container: {
            backgroundColor: theme.colors.surface,
            color: theme.colors.onSurface
        },
        subSeparator: {
            color: theme.colors.onBackground
        },
        item: {
            paddingTop: 20,
            paddingBottom: 20,
        },
        subItem: {
            paddingTop: 7.5,
            paddingBottom: 7.5
        },
        searchBar: {
            backgroundColor: theme.colors.background,
        },
        searchTextInput: {
            color: theme.colors.onBackground
        }
    };