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-04-02 13:46:11 +0300
Browse Files
Options
Browse Files
Download
Email Patches
Plain Diff
Commit
eb20122db49d695ed23c6ea19f9e93836db90177
eb20122d
1 parent
64a32dbf
revert My Rewards color fixes
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
13 additions
and
11 deletions
SwiftWarplyFramework/SwiftWarplyFramework/WalletActiveCouponCollectionViewCell.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletActiveCouponsScrollTableViewCell.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletVouchersBannerTableViewCell.swift
SwiftWarplyFramework/SwiftWarplyFramework/WalletActiveCouponCollectionViewCell.swift
View file @
eb20122
...
...
@@ -32,10 +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
(
rgb
:
0xE20074
)
badgeCountView
.
backgroundColor
=
UIColor
(
red
:
0.92
,
green
:
0.75
,
blue
:
0.41
,
alpha
:
1.00
)
//
badgeCountView.backgroundColor = UIColor(rgb: 0xE20074)
badgeCountLabel
.
textColor
=
.
white
//
badgeCountLabel.textColor = .white
}
func
configureCell
(
badgeId
:
String
,
badgeCount
:
Int
)
{
...
...
SwiftWarplyFramework/SwiftWarplyFramework/WalletActiveCouponsScrollTableViewCell.swift
View file @
eb20122
...
...
@@ -40,12 +40,14 @@ import SwiftEventBus
dotLeftWidth
.
constant
=
12
dotLeftHeight
.
constant
=
12
dotLeft
.
layer
.
cornerRadius
=
6
dotLeft
.
backgroundColor
=
UIColor
(
rgb
:
0xE20074
)
dotLeft
.
backgroundColor
=
UIColor
(
rgb
:
0x00A5E3
)
// dotLeft.backgroundColor = UIColor(rgb: 0xE20074)
dotRightWidth
.
constant
=
8
dotRightHeight
.
constant
=
8
dotRight
.
layer
.
cornerRadius
=
4
dotRight
.
backgroundColor
=
UIColor
(
rgb
:
0x767676
)
dotRight
.
backgroundColor
=
UIColor
(
rgb
:
0x00A5E3
)
// dotRight.backgroundColor = UIColor(rgb: 0x767676)
}
...
...
@@ -129,23 +131,23 @@ extension WalletActiveCouponsScrollTableViewCell: UIScrollViewDelegate {
dotLeftWidth
.
constant
=
8
dotLeftHeight
.
constant
=
8
dotLeft
.
layer
.
cornerRadius
=
4
dotLeft
.
backgroundColor
=
UIColor
(
rgb
:
0x767676
)
//
dotLeft.backgroundColor = UIColor(rgb: 0x767676)
dotRightWidth
.
constant
=
12
dotRightHeight
.
constant
=
12
dotRight
.
layer
.
cornerRadius
=
6
dotRight
.
backgroundColor
=
UIColor
(
rgb
:
0xE20074
)
//
dotRight.backgroundColor = UIColor(rgb: 0xE20074)
}
else
{
dotLeftWidth
.
constant
=
12
dotLeftHeight
.
constant
=
12
dotLeft
.
layer
.
cornerRadius
=
6
dotLeft
.
backgroundColor
=
UIColor
(
rgb
:
0xE20074
)
//
dotLeft.backgroundColor = UIColor(rgb: 0xE20074)
dotRightWidth
.
constant
=
8
dotRightHeight
.
constant
=
8
dotRight
.
layer
.
cornerRadius
=
4
dotRight
.
backgroundColor
=
UIColor
(
rgb
:
0x767676
)
//
dotRight.backgroundColor = UIColor(rgb: 0x767676)
}
}
...
...
SwiftWarplyFramework/SwiftWarplyFramework/WalletVouchersBannerTableViewCell.swift
View file @
eb20122
...
...
@@ -42,8 +42,8 @@ import SwiftEventBus
// 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
(
rgb
:
0xE20074
)
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