shortcutsBundle.swift 322 B

12345678910111213141516171819
  1. //
  2. // shortcutsBundle.swift
  3. // shortcuts
  4. //
  5. // Created by Tienson Qin on 2025/9/19.
  6. //
  7. import WidgetKit
  8. import SwiftUI
  9. @main
  10. @available(iOSApplicationExtension 18.0, *)
  11. struct shortcutsBundle: WidgetBundle {
  12. var body: some Widget {
  13. Shortcuts()
  14. QuickAddButton()
  15. RecordAudioButton()
  16. }
  17. }