Footer Fancy
Polished footer with "Developed with ❤️ in Prague", company branding, and live app version.
SwiftUI Implementation
Pure Vanilla Swift • No DependenciesfooterFancy.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
- Category
- Settings, Lists & Rows
- 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 StoreRelated SwiftUI Components
More components in Settings, Lists & Rows and related app architectures.
Settings, Lists & RowsiOS 16.0+
Settings List Row Label Basic
Standard iOS settings navigation row with SF symbol and title.
View Component & Code
Settings, Lists & RowsiOS 16.0+
Settings LabeledContent List Row
Settings row with title and right-aligned detail text using LabeledContent.
View Component & Code
Settings, Lists & RowsiOS 16.0+
Settings Row with Custom LabeledContent
Rich settings item with custom badge and secondary status text.
View Component & Code