iOS-study
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

пре 1 година
1234567891011121314151617181920212223242526
  1. //
  2. // ContentView.swift
  3. // iOSFirst
  4. //
  5. // Created by 孙宇峰 on 2023/1/31.
  6. //
  7. import SwiftUI
  8. struct ContentView: View {
  9. var body: some View {
  10. VStack {
  11. Image(systemName: "globe")
  12. .imageScale(.large)
  13. .foregroundColor(.accentColor)
  14. Text("Hello, world!")
  15. }
  16. .padding()
  17. }
  18. }
  19. struct ContentView_Previews: PreviewProvider {
  20. static var previews: some View {
  21. ContentView()
  22. }
  23. }