Page Properties |
---|
|
Status | Status |
---|
colour | Yellow |
---|
title | to be reviewedin review |
---|
|
|
---|
Approver | Nadzeya Karaban |
---|
|
Gini Capture SDK provides various features you can enable. All of them are configured through GiniConfiguration.shared
instance. Specifically, the GiniConfiguration
is used to configure the Gini Capture SDK. For Gini Capture SDK used GiniConfiguration.shared()
singleton.
...
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 |
---|
title | navigationBarReviewTitleBackButton |
---|
|
Sets the back button text in the navigation bar on the review screen. Use this if you only want to show the title. Code Block |
---|
| @objc
public var navigationBarReviewTitleBackButton: String |
|
Expand |
---|
title | navigationBarReviewTitleCloseButton |
---|
|
Sets the close button text in the navigation bar on the review screen. Use this if you only want to show the title. Code Block |
---|
| @objc
public var navigationBarReviewTitleCloseButton: String |
|
Expand |
---|
title | navigationBarReviewTitleContinueButton |
---|
|
Sets the continue button text in the navigation bar on the review screen. Code Block |
---|
| @objc
public var navigationBarReviewTitleContinueButton: String |
|
...
Expand |
---|
title | backToCameraButtonResource |
---|
|
Code Block |
---|
| @objc
public var backToCameraButtonResource: PreferredButtonResource? |
|
Expand |
---|
title | backToMenuButtonResource |
---|
|
Code Block |
---|
| @objc
public var backToMenuButtonResource: PreferredButtonResource? |
|
Expand |
---|
|
Code Block |
---|
| @objc
public var nextButtonResource: PreferredButtonResource? |
|
...
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.