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
Vasilis
2022-04-15 12:39:55 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
24f6b9fb0a2474bc09d94e6fbb60803be697d852
24f6b9fb
1 parent
d362399e
fixes
Show whitespace changes
Inline
Side-by-side
Showing
8 changed files
with
5 additions
and
4 deletions
.DS_Store
WarplySDKFrameworkIOS/.DS_Store
WarplySDKFrameworkIOS/Media.xcassets/ic_back.imageset/ic_back-1.png
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS.xcodeproj/project.pbxproj
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS.xcworkspace/xcuserdata/billskouras.xcuserdatad/UserInterfaceState.xcuserstate
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/Coupons.xib
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/CouponsView.swift
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/CouponsViewInterface.swift
.DS_Store
View file @
24f6b9f
No preview for this file type
WarplySDKFrameworkIOS/.DS_Store
View file @
24f6b9f
No preview for this file type
WarplySDKFrameworkIOS/Media.xcassets/ic_back.imageset/ic_back-1.png
0 → 100644
View file @
24f6b9f
470 Bytes
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS.xcodeproj/project.pbxproj
View file @
24f6b9f
...
...
@@ -901,7 +901,7 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DEVELOPMENT_ASSET_PATHS =
WarplySDKFrameworkIOS/Media
;
DEVELOPMENT_ASSET_PATHS =
Media.xcassets
;
DEVELOPMENT_TEAM = VW5AF53FLP;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
...
...
@@ -937,7 +937,7 @@
CODE_SIGN_STYLE = Automatic;
CURRENT_PROJECT_VERSION = 1;
DEFINES_MODULE = YES;
DEVELOPMENT_ASSET_PATHS =
WarplySDKFrameworkIOS/Media
;
DEVELOPMENT_ASSET_PATHS =
Media.xcassets
;
DEVELOPMENT_TEAM = VW5AF53FLP;
DYLIB_COMPATIBILITY_VERSION = 1;
DYLIB_CURRENT_VERSION = 1;
...
...
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS.xcworkspace/xcuserdata/billskouras.xcuserdatad/UserInterfaceState.xcuserstate
View file @
24f6b9f
No preview for this file type
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/Coupons.xib
View file @
24f6b9f
...
...
@@ -12,6 +12,7 @@
<placeholder
placeholderIdentifier=
"IBFilesOwner"
id=
"-1"
userLabel=
"File's Owner"
customClass=
"Coupons"
customModule=
"WarplySDKFrameworkIOS"
customModuleProvider=
"target"
>
<connections>
<outlet
property=
"myScrollView"
destination=
"SHV-Vg-A8P"
id=
"dzS-Na-cRH"
/>
<outlet
property=
"view"
destination=
"iN0-l3-epB"
id=
"wLC-JN-Nyj"
/>
</connections>
</placeholder>
<placeholder
placeholderIdentifier=
"IBFirstResponder"
id=
"-2"
customClass=
"UIResponder"
/>
...
...
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/CouponsView.swift
View file @
24f6b9f
...
...
@@ -98,7 +98,7 @@ struct Previews_CouponsView_Previews: PreviewProvider {
static
var
uiscreen
=
UIScreen
.
main
.
bounds
static
var
previews
:
some
View
{
ZStack
{
Image
(
"ic_back"
,
bundle
:
Bundle
(
identifier
:
"framework.warp.ly.WarplySDKFrameworkIOS"
))
Image
(
"ic_back"
,
bundle
:
Bundle
(
for
:
MyEmptyClass
.
self
))
.
resizable
()
.
frame
(
width
:
self
.
uiscreen
.
height
*
0.025
,
height
:
self
.
uiscreen
.
height
*
0.02
)
.
offset
(
x
:
-
self
.
uiscreen
.
width
/
2
+
self
.
uiscreen
.
width
*
0.05
,
y
:
self
.
uiscreen
.
height
*
0.07
)
...
...
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/CouponsViewInterface.swift
View file @
24f6b9f
...
...
@@ -12,7 +12,7 @@ import SwiftUI
@objc
public
class
CouponsViewInterface
:
NSObject
{
@objc
static
public
func
couponsViewController
()
->
UIViewController
{
return
UIHostingController
(
rootView
:
CouponsView
()
)
return
Coupons
(
)
}
}
...
...
Please
register
or
login
to post a comment