Skip to content

Commit

Permalink
The row borders should use the color defined in theme.dividerColor (#117
Browse files Browse the repository at this point in the history
)

As can be found in the Design Resources https://developer.apple.com/design/resources/
(They are currently too dark)
  • Loading branch information
Dylan Companjen authored and souhe committed Sep 3, 2018
1 parent a9515d6 commit 2d52228
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/components/RowItem.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ class RowItem extends React.Component<Props> {
backgroundColor: theme.barColor,
borderTopWidth: first ? StyleSheet.hairlineWidth : 0,
borderBottomWidth: last ? StyleSheet.hairlineWidth : 0,
borderColor: theme.footnoteColor,
borderColor: theme.dividerColor,
},
]}
>
Expand Down Expand Up @@ -118,7 +118,7 @@ class RowItem extends React.Component<Props> {
style={[
styles.separator,
{
backgroundColor: theme.footnoteColor,
backgroundColor: theme.dividerColor,
marginLeft: icon ? 54 : 15,
},
]}
Expand Down

0 comments on commit 2d52228

Please sign in to comment.