callstack / callstack/react-native-paper
List.Accordion border radius
- Dominant language
- TypeScript
- Stars
- 14.5k
- Forks
- 2.2k
- Avg merge
- 5d 23h
- Merged PRs (30d)
- 12
Description
### Ask your Question
Is it possible to have borderRadius on List.Accordion? Currently it has rigid corners and I want them to be rounded.

```
selectPostCategoryIcon(props, selectedPostCategory)
}
onPress={(e: GestureResponderEvent) =>
handlePostDropdownPress(selectedPostCategory)
}
expanded={postDropdownExpanded}
titleStyle={{ fontSize: 22 }}
style={{ borderRadius: 100 }}
>
{postCategories.map((item, index) =>
item !== selectedPostCategory ? (
handlePostDropdownPress(item)
}
titleStyle={{ fontSize: 16 }}
left={(props) => selectPostCategoryIcon(props, item)}
style={{ backgroundColor: "white" }}
/>
) : undefined
)}
```
Contributor guide
Assessment
This issue has not been assessed yet.