mirror of
https://github.com/BlueWallet/BlueWallet.git
synced 2025-03-11 09:36:11 +01:00
22 lines
391 B
Swift
22 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()
|
||
|
MarketWidget()
|
||
|
WalletInformationAndMarketWidget()
|
||
|
WalletInformationWidget()
|
||
|
}
|
||
|
}
|