BlueWallet/ios/Widgets/WalletAppShortcuts.swift
Marcos Rodriguez Velez ee739d347d ADD: Market Price intent
2024-10-27 18:14:37 -04:00

27 lines
648 B
Swift

//
// WalletAppShortcuts.swift
// BlueWallet
//
// Created by Marcos Rodriguez on 10/27/24.
// Copyright © 2024 BlueWallet. All rights reserved.
//
import AppIntents
@available(iOS 16.4, *)
struct WalletAppShortcuts: AppShortcutsProvider {
@AppShortcutsBuilder
static var appShortcuts: [AppShortcut] {
AppShortcut(
intent: PriceIntent(),
phrases: [
"Market Rate \(.applicationName)",
"Get the current Bitcoin market rate in \(.applicationName)"
],
shortTitle: "Market Rate",
systemImageName: "bitcoinsign.circle"
)
}
}