mirror of
https://codeberg.org/comaps/comaps
synced 2025-12-21 13:53:37 +00:00
10 lines
146 B
Swift
10 lines
146 B
Swift
import SwiftUI
|
|
|
|
struct AppLogo: View {
|
|
var body: some View {
|
|
Image("comaps")
|
|
.resizable()
|
|
.aspectRatio(contentMode: .fit)
|
|
}
|
|
}
|