feat(widget): Add home screen widget with quick access actions

This commit is contained in:
cogwheel0
2025-12-07 12:26:16 +05:30
parent b286a25910
commit 745ff01954
59 changed files with 1950 additions and 14 deletions

View File

@@ -0,0 +1,16 @@
//
// ConduitWidgetBundle.swift
// ConduitWidget
//
// Created by cogwheel on 07/12/25.
//
import WidgetKit
import SwiftUI
@main
struct ConduitWidgetBundle: WidgetBundle {
var body: some Widget {
ConduitWidget()
}
}