How to convert Navbar Large title to Multi-line, centre aligned

I'm trying to design view controller with Multi-lined centred Large title text exactly like Ask Siri by apple (Settings->General->Keyboards->About Ask Siri, Dictation and Privacy...).
 
I can able to achieve centred text using:
Code Block
let paragraph = NSMutableParagraphStyle()
paragraph.alignment = .center
navigationController?.navigationBar.largeTitleTextAttributes = [.paragraphStyle: paragraph]


I did set Navigation title from Storyboard and tried these to achieve multi-lined large title:

But none of them are worked on iOS 13.

Is there any way to enable multi-line on Large navigation title label.?
I Don't think "About Ask Siri ..." is using large title. If you scroll it you will see scroll indicators with title, unlike large titles from "Settings" page. So to do similar effect best choice will be tableHeaderView and observing table offset
How to convert Navbar Large title to Multi-line, centre aligned
 
 
Q