Skip to content

Commit

Permalink
Add separator to split view
Browse files Browse the repository at this point in the history
  • Loading branch information
robertying committed May 6, 2020
1 parent caf640b commit d7fe0b9
Showing 1 changed file with 12 additions and 0 deletions.
12 changes: 12 additions & 0 deletions patches/react-native-navigation+6.5.0.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
diff --git a/node_modules/react-native-navigation/lib/ios/RNNSplitViewControllerPresenter.m b/node_modules/react-native-navigation/lib/ios/RNNSplitViewControllerPresenter.m
index b9ee985..dd67568 100644
--- a/node_modules/react-native-navigation/lib/ios/RNNSplitViewControllerPresenter.m
+++ b/node_modules/react-native-navigation/lib/ios/RNNSplitViewControllerPresenter.m
@@ -16,6 +16,7 @@ - (void)applyOptions:(RNNNavigationOptions *)options {
[self.splitViewController rnn_setPrimaryEdge:options.splitView.primaryEdge];
[self.splitViewController rnn_setMinWidth:options.splitView.minWidth];
[self.splitViewController rnn_setMaxWidth:options.splitView.maxWidth];
+ [[self.splitViewController view] setBackgroundColor:[UIColor separatorColor]];
}


0 comments on commit d7fe0b9

Please sign in to comment.