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
2025-03-04 17:41:53 +0200
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
8d670ed604b5e641a21baa95cb83b24c15f573ee
8d670ed6
1 parent
f2b3df7d
My Rewards color fixes
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
12 additions
and
2 deletions
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
SwiftWarplyFramework/SwiftWarplyFramework/Main.storyboard
SwiftWarplyFramework/SwiftWarplyFramework/WalletActiveCouponCollectionViewCell.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletActiveCouponsScrollTableViewCell.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletVouchersBannerTableViewCell.swift
SwiftWarplyFramework/SwiftWarplyFramework.xcworkspace/xcuserdata/manos.xcuserdatad/UserInterfaceState.xcuserstate
View file @
8d670ed
No preview for this file type
SwiftWarplyFramework/SwiftWarplyFramework/Main.storyboard
View file @
8d670ed
This diff is collapsed. Click to expand it.
SwiftWarplyFramework/SwiftWarplyFramework/WalletActiveCouponCollectionViewCell.swift
View file @
8d670ed
...
...
@@ -32,7 +32,10 @@ import UIKit
badgeView
.
layer
.
cornerRadius
=
16.0
badgeCountView
.
layer
.
cornerRadius
=
4.0
badgeCountView
.
backgroundColor
=
UIColor
(
red
:
0.92
,
green
:
0.75
,
blue
:
0.41
,
alpha
:
1.00
)
// badgeCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
badgeCountView
.
backgroundColor
=
UIColor
(
rgb
:
0xE20074
)
badgeCountLabel
.
textColor
=
.
white
}
func
configureCell
(
badgeId
:
String
,
badgeCount
:
Int
)
{
...
...
SwiftWarplyFramework/SwiftWarplyFramework/WalletActiveCouponsScrollTableViewCell.swift
View file @
8d670ed
...
...
@@ -39,10 +39,12 @@ import SwiftEventBus
dotLeftWidth
.
constant
=
12
dotLeftHeight
.
constant
=
12
dotLeft
.
layer
.
cornerRadius
=
6
dotLeft
.
backgroundColor
=
UIColor
(
rgb
:
0xE20074
)
dotRightWidth
.
constant
=
8
dotRightHeight
.
constant
=
8
dotRight
.
layer
.
cornerRadius
=
4
dotRight
.
backgroundColor
=
UIColor
(
rgb
:
0x767676
)
}
...
...
@@ -113,19 +115,23 @@ extension WalletActiveCouponsScrollTableViewCell: UIScrollViewDelegate {
dotLeftWidth
.
constant
=
8
dotLeftHeight
.
constant
=
8
dotLeft
.
layer
.
cornerRadius
=
4
dotLeft
.
backgroundColor
=
UIColor
(
rgb
:
0x767676
)
dotRightWidth
.
constant
=
12
dotRightHeight
.
constant
=
12
dotRight
.
layer
.
cornerRadius
=
6
dotRight
.
backgroundColor
=
UIColor
(
rgb
:
0xE20074
)
}
else
{
dotLeftWidth
.
constant
=
12
dotLeftHeight
.
constant
=
12
dotLeft
.
layer
.
cornerRadius
=
6
dotLeft
.
backgroundColor
=
UIColor
(
rgb
:
0xE20074
)
dotRightWidth
.
constant
=
8
dotRightHeight
.
constant
=
8
dotRight
.
layer
.
cornerRadius
=
4
dotRight
.
backgroundColor
=
UIColor
(
rgb
:
0x767676
)
}
}
...
...
SwiftWarplyFramework/SwiftWarplyFramework/WalletVouchersBannerTableViewCell.swift
View file @
8d670ed
...
...
@@ -41,7 +41,8 @@ import UIKit
// voucherBannerLabel.text = "Ενημερώσου για το υπόλοιπο επιδότησης"
voucherCountView
.
layer
.
cornerRadius
=
4.0
voucherCountView
.
backgroundColor
=
UIColor
(
red
:
0.92
,
green
:
0.75
,
blue
:
0.41
,
alpha
:
1.00
)
// voucherCountView.backgroundColor = UIColor(red: 0.92, green: 0.75, blue: 0.41, alpha: 1.00)
voucherCountView
.
backgroundColor
=
UIColor
(
rgb
:
0xE20074
)
}
public
override
func
setSelected
(
_
selected
:
Bool
,
animated
:
Bool
)
{
...
...
Please
register
or
login
to post a comment