fateh999 / react-native-paper-dropdown

Dropdown using react native paper TextInput and Menu
MIT License
132 stars 73 forks source link

how to change dropdown container background color? #98

Closed tahir-jamil closed 1 year ago

tahir-jamil commented 1 year ago

image i want to change blue color to white

Kyiomi commented 1 year ago

Same issue here

tahir-jamil commented 1 year ago

I am able to change the colors using theme below are my settings

const customTheme = {
    ...myTheme,
    colors: {
      ...myTheme.colors,
      onSurfaceVariant: focus?  colors.primary: colors.muted,
      elevation: {
        level0: 'transparent',
        level1: 'rgb(247, 241, 255)',
        level2: 'rgb(255, 255, 255)',
        level3: 'rgb(238, 229, 254)',
        level4: 'rgb(236, 226, 254)',
        level5: 'rgb(233, 222, 254)',
      },
    },
  };