Skip to content
Price Tags preview
Rendered from the SwiftUI source on this page.

Price Tags

From syxUI — written for both platforms, not translated between them.

Price and plan tags.

Badges · SwiftUI · iOS 17

  • badges
  • swiftui

The actual source

CurrencyTags.swift
// Price Tags · syxUI · https://syxui.dev/components/tag-currency
// Free in any project. Keep this line and credit syxUI where a person can read it.

import SwiftUI

let tgGreen = Color(red: 0.16, green: 0.66, blue: 0.40)
let tgOrange = Color(red: 0.98, green: 0.55, blue: 0.10)
let tgIndigo = Color(red: 0.35, green: 0.34, blue: 0.84)

func tagPill(_ text: String, _ color: Color) -> some View {
    Text(text).font(.system(size: 13, weight: .semibold)).foregroundStyle(color).padding(.horizontal, 12).padding(.vertical, 6).background(color.opacity(0.14), in: Capsule())
}

struct CurrencyTags: View { var body: some View { HStack(spacing: 8) { tagPill("$129", tgIndigo); tagPill("Free", tgGreen); tagPill("Pro", tgOrange) } } }
iOS 17 · No dependencies

Dependencies

SwiftUI
No external dependencies

Requires iOS 17