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)
|
||
|
|
}
|
||
|
|
}
|