Skip to content
Open
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
12 changes: 10 additions & 2 deletions RMActionController/RMActionController.m
Original file line number Diff line number Diff line change
Expand Up @@ -293,7 +293,11 @@ - (void)setupTopContainerElements {
if(!self.disableBlurEffects) {
self.topContainer.backgroundColor = [UIColor clearColor];
} else {
self.topContainer.backgroundColor = [UIColor whiteColor];
if (@available(iOS 13.0, *)) {
self.topContainer.backgroundColor = [UIColor secondarySystemBackgroundColor];
}else {
self.topContainer.backgroundColor = [UIColor whiteColor];
}
}

//Debugging Accessibility Labels
Expand Down Expand Up @@ -336,7 +340,11 @@ - (void)setupBottomContainerElements {
if(!self.disableBlurEffects) {
self.bottomContainer.backgroundColor = [UIColor clearColor];
} else {
self.bottomContainer.backgroundColor = [UIColor whiteColor];
if (@available(iOS 13.0, *)) {
self.bottomContainer.backgroundColor = [UIColor secondarySystemBackgroundColor];
}else {
self.bottomContainer.backgroundColor = [UIColor whiteColor];
}
}

//Debugging Accessibility Labels
Expand Down