Skip to content

Commit

Permalink
(ios) Remove image in liquidity screen
Browse files Browse the repository at this point in the history
Also use an imageset for the bucket icon in the settings
for the time being (fixes a display glitch).
  • Loading branch information
dpad85 committed Jan 4, 2024
1 parent fe02533 commit ca24d8c
Show file tree
Hide file tree
Showing 6 changed files with 43 additions and 186 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
{
"images" : [
{
"filename" : "bucket_monochrome.svg",
"idiom" : "universal",
"scale" : "1x"
},
{
"idiom" : "universal",
"scale" : "2x"
},
{
"idiom" : "universal",
"scale" : "3x"
}
],
"info" : {
"author" : "xcode",
"version" : 1
}
}
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.

This file was deleted.

This file was deleted.

Original file line number Diff line number Diff line change
Expand Up @@ -213,6 +213,9 @@ fileprivate struct ConfigurationList: View {
Label { Text("Add liquidity") } icon: {
Image("bucket_monochrome")
.renderingMode(.template)
.resizable()
.aspectRatio(contentMode: .fit)
.frame(width: 20, height: 20)
.foregroundColor(.appAccent)
}
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -150,11 +150,6 @@ struct LiquidityAdsView: View {
Section {
VStack(alignment: HorizontalAlignment.center, spacing: 18) {

Image("bucket")
.resizable()
.scaledToFit()
.frame(maxWidth: 100, maxHeight: 100)

Text("Plan ahead to save money later")
.font(.title3)

Expand Down

0 comments on commit ca24d8c

Please sign in to comment.