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

false

Yes

Controls the horizontal positioning of the page title.

Valid values are:

  • trueAlign the page title to the center of the title bar.
  • false: Align the page title to the start of the title bar.

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

true

titlealignmenttrue.PNG

false

titlealignmentnone.PNG