fateh999 / react-native-paper-dropdown

Dropdown using react native paper TextInput and Menu
121 stars 72 forks source link

How do I get rid of these purple bars at top and bottom of each list item? #103

Open inferno080 opened 5 months ago

inferno080 commented 5 months ago

image

jbierfeldt commented 4 months ago

You need to change elevation.level2 in your theme colors.

export const theme = {
  ...DefaultTheme,
  colors: {
    ...DefaultTheme.colors,
    elevation: {
      level2: "#ffffff"
    }
  },
};
Acarvajal904 commented 2 months ago

You need to change elevation.level2 in your theme colors.

export const theme = {
  ...DefaultTheme,
  colors: {
    ...DefaultTheme.colors,
    elevation: {
      level2: "#ffffff"
    }
  },
};

but not only change the background color, what about not have them ?