Releases: RoverPlatform/rover-ios
Releases · RoverPlatform/rover-ios
4.14.0
4.13.0
Release Notes
- Live activities support (see https://developer.rover.io/docs/ios/live-activities)
- Communication Hub enhancements
4.12.1
4.12.0
4.11.6
Release Notes
- YouTube Video Display: Fixed YouTube 153 error that was preventing videos from being displayed
4.11.5
4.11.4
4.11.3
Release Notes
- Support for explicitly specifying navigation bar appearance, by adding two new parameters to
CommunicationHubViewandCommunicationHubHostingController:navigationBarBackgroundColorandnavigationBarColorScheme.
If a coloured navigation bar is desired, pass the desired color as the background color and set the color scheme to dark, so the elements (back arrow, search bar) of the nav bar appear visible on top of the background color. Example:
CommunicationHubHostingController(
/// Optionally specify the Communication Hub's title bar text, if needed. It defaults to "Inbox".
title: "Inbox",
// Optionally specify the accent color to use for buttons and links. It defaults to your app's accent color.
accentColor: .green,
navigationBarBackgroundColor: Color("App Brand Accent Color"),
navigationBarColorScheme: .dark
)