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-29 18:29:02 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
1481f5c4478b0ed396ba1d0acff367866747fa56
1481f5c4
1 parent
ed376445
fix screen heights
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
4 additions
and
2 deletions
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/MoreForYouView.swift
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/WalletView.swift
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
1481f5c
No preview for this file type
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/MoreForYouView.swift
View file @
1481f5c
...
...
@@ -183,7 +183,8 @@ struct MoreForYouView: View {
.
cornerRadius
(
20
,
corners
:
[
.
topLeft
])
}
.
frame
(
width
:
self
.
uiscreen
.
width
,
height
:
self
.
uiscreen
.
height
)
.
frame
(
maxWidth
:
.
infinity
,
maxHeight
:
.
infinity
)
// .frame(width:self.uiscreen.width, height:self.uiscreen.height )
}
}
...
...
WarplySDKFrameworkIOS/WarplySDKFrameworkIOS/WalletView.swift
View file @
1481f5c
...
...
@@ -340,7 +340,8 @@ struct WalletView: View {
.
frame
(
maxWidth
:
.
infinity
,
maxHeight
:
.
infinity
)
}
.
frame
(
width
:
self
.
uiscreen
.
width
,
height
:
self
.
uiscreen
.
height
)
.
frame
(
maxWidth
:
.
infinity
,
maxHeight
:
.
infinity
)
// .frame(width:self.uiscreen.width, height:self.uiscreen.height )
}
}
...
...
Please
register
or
login
to post a comment