Skip to content

Commit

Permalink
Additonal bug/UI changes
Browse files Browse the repository at this point in the history
  • Loading branch information
Dev Patel authored and Dev Patel committed Feb 11, 2024
1 parent 7c9c4c6 commit 622fa3d
Show file tree
Hide file tree
Showing 16 changed files with 6 additions and 52 deletions.
Original file line number Diff line number Diff line change
@@ -1,17 +1,17 @@
{
"images" : [
{
"filename" : "knick knacks.png",
"filename" : "knick knacks (3).png",
"idiom" : "universal",
"scale" : "1x"
},
{
"filename" : "knick knacks 1.png",
"filename" : "knick knacks (1).png",
"idiom" : "universal",
"scale" : "2x"
},
{
"filename" : "knick knacks 2.png",
"filename" : "knick knacks (2).png",
"idiom" : "universal",
"scale" : "3x"
}
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.

This file was deleted.

Binary file not shown.
Binary file not shown.
Binary file not shown.
6 changes: 3 additions & 3 deletions HackIllinois/ViewControllers/HIPointsShopSwiftUIView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,10 @@ struct HIPointShopSwiftUIView: View {
HStack(alignment: .center, spacing: 7) {
Image("Coin")
.resizable()
.frame(width: 25, height: 25)
.frame(width: isIpad ? 40 : 25, height:isIpad ? 40 : 25)

Text("\(coins)")
.font(Font.custom("Montserrat", size: 16).weight(.bold))
.font(Font.custom("Montserrat", size: isIpad ? 26 : 16).weight(.bold))
.foregroundColor(.white)

}
Expand Down Expand Up @@ -178,7 +178,7 @@ struct PointShopItemCell: View {
HStack(alignment: .center, spacing: 7) {
Image("Coin")
.resizable()
.frame(width: 25, height: 25)
.frame(width:25, height: 25)
if(item.isRaffle) {
Text("\(item.price)")
.font(Font.custom("Montserrat", size: 16).weight(.bold))
Expand Down

0 comments on commit 622fa3d

Please sign in to comment.