mirror of
https://github.com/logseq/logseq.git
synced 2026-05-01 09:26:28 +00:00
20 lines
322 B
Swift
20 lines
322 B
Swift
//
|
|
// shortcutsBundle.swift
|
|
// shortcuts
|
|
//
|
|
// Created by Tienson Qin on 2025/9/19.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
@available(iOSApplicationExtension 18.0, *)
|
|
struct shortcutsBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
Shortcuts()
|
|
QuickAddButton()
|
|
RecordAudioButton()
|
|
}
|
|
}
|