-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathJongGinDeeLogo.swift
More file actions
29 lines (25 loc) · 907 Bytes
/
Copy pathJongGinDeeLogo.swift
File metadata and controls
29 lines (25 loc) · 907 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
import SwiftUI
struct JongGinDeeLogo: View {
var body: some View {
VStack(spacing: 8) {
HStack(spacing: 10) {
Image(systemName: "fork.knife.circle.fill")
.font(.system(size: 40))
.foregroundColor(.orange)
Text("JongGinDee")
.font(.system(size: 32, weight: .bold))
.foregroundColor(.primary)
}
Text("ร้านอาหารใกล้พื้นที่กองบัญชาการกองทัพไทย")
.font(.subheadline)
.foregroundColor(.gray)
.multilineTextAlignment(.center)
}
.padding(.bottom, 20)
}
}
struct JongGinDeeLogo_Previews: PreviewProvider {
static var previews: some View {
JongGinDeeLogo()
}
}