Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix backgroundColor from child
  • Loading branch information
cixio committed Jun 9, 2024
commit f44dea8d485da41b56fca97e5fe9425f8b648fa1
2 changes: 1 addition & 1 deletion src/components/Section.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ const Section: React.FC<SectionInterface> = ({
{React.cloneElement(child, propsToAdd)}
<Separator
isHidden={invisibleSeparator}
backgroundColor={separatorBackgroundColor}
backgroundColor={separatorBackgroundColor || childProps?.backgroundColor}
tintColor={separatorTintColor}
insetLeft={separatorInsetLeftSupportImage}
insetRight={separatorInsetRight}
Expand Down