Autumn Sale50% offCOMPOT
Settings, Lists & RowsFree ComponentiOS 16.0+Xcode 15+

Footer Fancy

Polished footer with "Developed with ❤️ in Prague", company branding, and live app version.

SwiftUI Implementation

Pure Vanilla Swift • No Dependencies
footerFancy.swift
import SwiftUI
import UIKit

// Make sure this extension is available in your project
extension UIApplication {
    static var appVersion: String? {
        return Bundle.main.object(forInfoDictionaryKey: "CFBundleShortVersionString") as? String
    }
}

struct FooterFancy: View {
    var body: some View {
        VStack(alignment: .center, spacing: 4) {
            (Text("Developed with ") +
             Text(Image(systemName: "heart.fill")).foregroundColor(.red) +
             Text(" in Prague"))
                .font(.headline)
                .fontWeight(.bold)
                .foregroundColor(.secondary)
                .multilineTextAlignment(.center)
                .frame(maxWidth: .infinity, alignment: .center)
            Text("LukyLab s.r.o.")
                .font(.body)
            HStack {
                Text("Compot")
                Text(UIApplication.appVersion ?? "")
            }
            .font(.body)
            .frame(maxWidth: .infinity, alignment: .center)
        }
        .foregroundColor(.secondary)
        .listRowBackground(Color.clear)
    }
}

#Preview {
    FooterFancy()
}

Ready to copy and paste directly into any Xcode project running iOS 16.0+.

Recommended Use Cases

  • App settings, preferences, and account configuration screens

Component Details

iOS Compatibility
iOS 16.0+
Xcode Version
Xcode 15+
Platform
iOS
License Tier
Free
C

Compot for iOS

Native SwiftUI playground app

Preview all 130+ components interactively on your device and copy code straight to Xcode with 1 tap.

Get Compot on the App Store