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-06-24 19:08:36 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
30a7c9ff9376b5e120c50755e03e58085f0693f3
30a7c9ff
1 parent
ca9006ba
add dynamic userTag at wallet
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
14 additions
and
4 deletions
SwiftWarplyFramework/SwiftWarplyFramework/WalletViewController.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletViewController.swift
View file @
30a7c9f
...
...
@@ -54,18 +54,28 @@ import UIKit
// profileImage.load(link: profile_image ?? "", placeholder: UIImage(), cache: URLCache())
profileNameLabel
.
text
=
"Γιώργος Γεωργίου"
// TODO: dynamic
questionnaireButton
.
setTitle
(
"Traveller"
,
for
:
.
normal
)
let
userTag
=
swiftApi
()
.
getUserTag
()
if
(
userTag
!=
""
)
{
questionnaireButton
.
setTitle
(
userTag
,
for
:
.
normal
)
questionnaireButton
.
titleLabel
?
.
font
=
UIFont
.
systemFont
(
ofSize
:
13
,
weight
:
.
semibold
)
// questionnaireButton.sizeToFit()
questionnaireButton
.
setTitleColor
(
.
white
,
for
:
.
normal
)
// questionnaireButton.sizeToFit()
questionnaireButton
.
frame
=
CGRect
(
x
:
0.0
,
y
:
0.0
,
width
:
questionnaireButton
.
intrinsicContentSize
.
width
,
height
:
questionnaireButton
.
intrinsicContentSize
.
height
)
questionnaireButton
.
applyGradient
(
colours
:
[
UIColor
(
red
:
0.40
,
green
:
0.77
,
blue
:
0.28
,
alpha
:
1.00
),
UIColor
(
red
:
0.10
,
green
:
0.66
,
blue
:
0.72
,
alpha
:
1.00
)],
gradient
:
GradientOrientation
.
horizontal
,
cornerRadius
:
7.0
)
// Shadow Color and Radius
// Shadow Color
questionnaireButton
.
layer
.
shadowColor
=
UIColor
(
red
:
0.33
,
green
:
0.38
,
blue
:
0.43
,
alpha
:
1.00
)
.
cgColor
questionnaireButton
.
layer
.
shadowOffset
=
CGSize
(
width
:
0.0
,
height
:
2.0
)
questionnaireButton
.
layer
.
shadowOpacity
=
1.0
questionnaireButton
.
layer
.
shadowRadius
=
0.0
questionnaireButton
.
layer
.
masksToBounds
=
false
}
else
{
questionnaireButton
.
setTitle
(
"+Προτιμήσεις"
,
for
:
.
normal
)
questionnaireButton
.
titleLabel
?
.
font
=
UIFont
.
systemFont
(
ofSize
:
13
,
weight
:
.
semibold
)
questionnaireButton
.
setTitleColor
(
UIColor
(
red
:
0.31
,
green
:
0.62
,
blue
:
0.18
,
alpha
:
1.00
),
for
:
.
normal
)
questionnaireButton
.
backgroundColor
=
UIColor
(
red
:
0.90
,
green
:
0.90
,
blue
:
0.90
,
alpha
:
1.00
)
questionnaireButton
.
frame
=
CGRect
(
x
:
0.0
,
y
:
0.0
,
width
:
questionnaireButton
.
intrinsicContentSize
.
width
,
height
:
questionnaireButton
.
intrinsicContentSize
.
height
)
}
questionnaireButton
.
layer
.
cornerRadius
=
7.0
dfyEarnView
.
layer
.
cornerRadius
=
5.0
...
...
Please
register
or
login
to post a comment