Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
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
1 change: 1 addition & 0 deletions lib/ios/RNNTabBarOptions.m
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ -(instancetype)initWithDict:(NSDictionary *)tabBarOptions {
self.currentTabIndex = [tabBarOptions valueForKey:@"currentTabIndex"];
self.testID = [tabBarOptions valueForKey:@"testID"];
self.currentTabId = [tabBarOptions valueForKey:@"currentTabId"];
self.drawUnder = [tabBarOptions valueForKey:@"drawUnder"];

return self;
}
Expand Down
1 change: 1 addition & 0 deletions lib/ios/RNNTopBarOptions.m
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ -(instancetype)initWithDict:(NSDictionary *)topBarOptions {
self.animateHide = [topBarOptions valueForKey:@"animateHide"];
self.largeTitle = [topBarOptions valueForKey:@"largeTitle"];
self.testID = [topBarOptions valueForKey:@"testID"];
self.drawUnder = [topBarOptions valueForKey:@"drawUnder"];

return self;
}
Expand Down
2 changes: 2 additions & 0 deletions lib/src/params/options/BottomTabs.js
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ class BottomTabs {
* @property {boolean} [hidden]
* @property {boolean} [animateHide]
* @property {string} [testID]
* @property {boolean} [drawUnder]
*/
constructor(params) {
if (isEmpty(params)) {
Expand All @@ -17,6 +18,7 @@ class BottomTabs {
this.hidden = params.hidden;
this.animateHide = params.animateHide;
this.testID = params.testID;
this.drawUnder = params.drawUnder;
}
}

Expand Down
2 changes: 2 additions & 0 deletions lib/src/params/options/TopBar.js
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ class TopBar {
* @property {boolean} [blur]
* @property {boolean} [noBorder]
* @property {boolean} [largeTitle]
* @property {boolean} [drawUnder]
*/
constructor(options) {
this.title = options.title;
Expand All @@ -32,6 +33,7 @@ class TopBar {
this.noBorder = options.noBorder;
this.largeTitle = options.largeTitle;
this.testID = options.testID;
this.drawUnder = options.drawUnder;
}
}

Expand Down