Skip to content

Commit

Permalink
Updated about view
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanov91 committed Oct 16, 2022
1 parent 8af0404 commit 1908b32
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Sources/OversizeSettingsKit/Views/About/AboutView.swift
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,23 @@ import SwiftUI

ScrollView(.horizontal, showsIndicators: false) {
HStack(spacing: Space.small) {

if let dressWeather = URL(string: "itms-apps:itunes.apple.com/us/app/apple-store/id1552617598") {
Link(destination: dressWeather) {
Resource.AppsIcons.dressWeather
.resizable()
.frame(width: 74, height: 74)
.mask(RoundedRectangle(cornerRadius: 16,
style: .continuous))
.overlay(
RoundedRectangle(cornerRadius: 16,
style: .continuous)
.stroke(lineWidth: 1)
.opacity(0.15)
)
}
}

if let pinWalletLink = URL(string: "itms-apps:itunes.apple.com/us/app/apple-store/id1477792790") {
Link(destination: pinWalletLink) {
Resource.AppsIcons.pinWallet
Expand Down

0 comments on commit 1908b32

Please sign in to comment.