...
The GiniConfiguration
class allows customizations to the enables customization of Gini Capture SDK’s look and feel of Gini Capture SDK. If there are limitations regarding which API can be used, this is clearly stated for the specific attribute.
...
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 |
---|
title | bottomNavigationBarEnabled |
---|
|
Enable/disable deactivate the bottom navigation bar. Code Block |
---|
| public var bottomNavigationBarEnabled: Bool |
|
...
Expand |
---|
|
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 |
---|
| public func updateFont(_ font: UIFont, for textStyle: UIFont.TextStyle) |
Parametersfont
| 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 |
---|
title | cleanup(paymentRecipient:paymentReference:paymentPurpose:iban:bic:amountToPay:) |
---|
|
Functions for clean up Code Block |
---|
| public func cleanup(paymentRecipient: String,
paymentReference: String,
paymentPurpose: String,
iban: String,
bic: String,
amountToPay: ExtractionAmount) |
ParameterspaymentRecipient
| paymentRecipient description | paymentReference
| paymentReference description | iban
| iban description | bic
| bic description | amountToPay
| amountToPay description |
|
Here you can find Find an example implementation here.