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.

iOSFirstApp.swift 288B

hace 1 año
hace 1 año
hace 1 año
12345678910111213141516171819
  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. SUIToastViewContainer(stackOverlap: .overlap)
  14. }
  15. }
  16. }