mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-02-24 15:36:59 +01:00
21 lines
391 B
Swift
21 lines
391 B
Swift
//
|
|
// Widgets.swift
|
|
// Widgets
|
|
//
|
|
// Created by Marcos Rodriguez on 6/6/21.
|
|
// Copyright © 2021 BlueWallet. All rights reserved.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
@main
|
|
struct Widgets: WidgetBundle {
|
|
@WidgetBundleBuilder
|
|
var body: some Widget {
|
|
PriceWidget()
|
|
WalletInformationWidget()
|
|
MarketWidget()
|
|
WalletInformationAndMarketWidget()
|
|
}
|
|
}
|