'swift push notification action title leading alignment

action screen example I have leading title alignment in my push notification action. How can i make it align to the center?

let view = UNNotificationAction(
    identifier: ActionIdentifier.view.rawValue,
    title: "View",
    options: .foreground
)

let category = UNNotificationCategory(
    identifier: categoryIdentifier,
    actions: [view],
    intentIdentifiers: []
)

UNUserNotificationCenter.current()
    .setNotificationCategories([category])


Sources

This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.

Source: Stack Overflow

Solution Source