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 година
1234567891011121314151617
  1. //
  2. // iOSFirstApp.swift
  3. // iOSFirst
  4. //
  5. // Created by 孙宇峰 on 2023/1/31.
  6. //
  7. import SwiftUI
  8. @main
  9. struct iOSFirstApp: App {
  10. var body: some Scene {
  11. WindowGroup {
  12. ContentView()
  13. }
  14. }
  15. }