Skip to content

Commit

Permalink
fix(GiniBankSDK): set modal presentation style
Browse files Browse the repository at this point in the history
PM-133
  • Loading branch information
igor-gini committed Jan 22, 2025
1 parent f7b8a2b commit f7ba9cb
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
<?xml version="1.0" encoding="UTF-8"?>
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="32700.99.1234" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<document type="com.apple.InterfaceBuilder3.CocoaTouch.Storyboard.XIB" version="3.0" toolsVersion="23094" targetRuntime="iOS.CocoaTouch" propertyAccessControl="none" useAutolayout="YES" useTraitCollections="YES" useSafeAreas="YES" colorMatched="YES">
<device id="retina5_9" orientation="portrait" appearance="light"/>
<dependencies>
<deployment identifier="iOS"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="22684"/>
<plugIn identifier="com.apple.InterfaceBuilder.IBCocoaTouchPlugin" version="23084"/>
<capability name="Safe area layout guides" minToolsVersion="9.0"/>
<capability name="System colors in document resources" minToolsVersion="11.0"/>
<capability name="documents saved in the Xcode 8 format" minToolsVersion="8.0"/>
Expand All @@ -12,7 +12,7 @@
<!--Digital Invoice Onboarding View Controller-->
<scene sceneID="jcM-d7-3Dk">
<objects>
<viewController storyboardIdentifier="digitalInvoiceOnboardingViewController" useStoryboardIdentifierAsRestorationIdentifier="YES" id="bsW-Wu-97S" customClass="DigitalInvoiceOnboardingViewController" customModule="GiniBankSDK" sceneMemberID="viewController">
<viewController storyboardIdentifier="digitalInvoiceOnboardingViewController" modalPresentationStyle="pageSheet" useStoryboardIdentifierAsRestorationIdentifier="YES" id="bsW-Wu-97S" customClass="DigitalInvoiceOnboardingViewController" customModule="GiniBankSDK" sceneMemberID="viewController">
<view key="view" contentMode="scaleToFill" id="sZ4-c8-lTq">
<rect key="frame" x="0.0" y="0.0" width="375" height="812"/>
<autoresizingMask key="autoresizingMask" widthSizable="YES" heightSizable="YES"/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ final class GalleryCoordinator: NSObject, Coordinator {
lazy fileprivate(set) var containerNavigationController: ContainerNavigationController = {
let container = ContainerNavigationController(rootViewController: self.galleryNavigator,
giniConfiguration: self.giniConfiguration)
container.modalPresentationStyle = .pageSheet
return container
}()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@ final class ReviewZoomViewController: UIViewController {
init(page: GiniCapturePage) {
self.page = page
super.init(nibName: nil, bundle: nil)
modalPresentationStyle = .pageSheet
}

@available(*, unavailable)
Expand Down

0 comments on commit f7ba9cb

Please sign in to comment.