Toggle navigation
Toggle navigation
This project
Loading...
Sign in
open-source
/
warply_sdk_framework
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Graphs
Network
Create a new issue
Commits
Issue Boards
Authored by
Manos Chorianopoulos
2022-04-21 19:12:06 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
a16260ed774f0ef428c412f508533250ad841c8b
a16260ed
1 parent
b3d56463
add CouponBarcodeView v2
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
0 deletions
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/CouponBarcodeView.swift
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/CouponBarcodeViewInterface.swift
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
a16260e
No preview for this file type
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/CouponBarcodeView.swift
View file @
a16260e
This diff is collapsed. Click to expand it.
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/CouponBarcodeViewInterface.swift
View file @
a16260e
...
...
@@ -6,3 +6,14 @@
//
import
Foundation
import
SwiftUI
@available(iOS 13.0.0, *)
@objc
public
class
CouponBarcodeViewInterface
:
NSObject
{
@objc(couponBarcodeViewController::)
static
public
func
couponBarcodeViewController
(
parentView
:
UIView
?,
coupon
:
Dictionary
<
String
,
Any
>
)
->
UIViewController
{
return
UIHostingController
(
rootView
:
CouponBarcodeView
(
parentView
:
parentView
!
,
coupon
:
coupon
))
}
}
...
...
Please
register
or
login
to post a comment