Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Info

If there are conflicting pairs of image and text for an interface element (e.g. for example, navigationBarCameraTitleCloseButton) the image will always be preferred, while making sure the accessibility label is set.

...

Expand
titlebottomNavigationBarEnabled

Enable/disable deactivate the bottom navigation bar.

Code Block
languageswift
public var bottomNavigationBarEnabled: Bool

...

Expand
titleupdateFont(_:for:)

Allows setting Enables customization of a custom font for specific text styles. The change will affect affects all screens where a specific text style was is used.

Code Block
languageswift
public func updateFont(_ font: UIFont, for textStyle: UIFont.TextStyle)

Parameters

font

Font that is going to be assosiated with specific text style. You can use scaled font or scale your font with our util method UIFont.scaledFont(_ font: UIFont, textStyle: UIFont.TextStyle)

textStyle

Constants that describe the preferred styles for fonts. Please, find additional information here

Expand
titlecleanup(paymentRecipient:paymentReference:paymentPurpose:iban:bic:amountToPay:)

Functions for clean up

Code Block
languageswift
public func cleanup(paymentRecipient: String,
                    paymentReference: String,
                    paymentPurpose: String,
                    iban: String,
                    bic: String,
                    amountToPay: ExtractionAmount)

Parameters

paymentRecipient

paymentRecipient description

paymentReference

paymentReference description

iban

iban description

bic

bic description

amountToPay

amountToPay description

Here you can find Find an example implementation here.