setTitleAlignment
The setTitleAlignment function is used to specify the horizontal positioning of the page title.
Method signature
copy
func setTitleAlignment(_ titleAlignment: Bool)
Parameters
Parameter | Data Type | Default value | Required | Description |
titleAlignment | Bool |
| Yes | Controls the horizontal positioning of the page title. Valid values are:
If this parameter is not specified, align the page title to the start of the title bar by default. |
Sample
copy
let param = GRVStartupParams()
param.titleAlignment = true
let viewController = try GRVAppContainerLaunch.sharedInstance().openApp(withApppId: appId, startupParams: param)
let navigationController = self.navigationController ?? UIApplication.shared.windows.first?.rootViewController as? UINavigationController
navigationController?.pushViewController(viewController, animated: true)
User experience
Value | Screenshot |
| |
|