spotube/ios/HomePlayerWidget/HomePlayerWidgetBundle.swift
Kingkor Roy Tirtho b52bf0f448
feat(android): home widget support (#2148)
* feat: add android home widget support

* feat: style widget player and add intent and callbacks on action

* feat: responsive and working android home widget

* fix(android): models stripping causing it to not work for release apks

* chore: ios lockfile update

* feat: config for iOS widget

* cd: upgrade xcode

* cd: reduce xcode version

* feat: add a christmas background
2024-12-16 22:47:44 +06:00

17 lines
259 B
Swift

//
// HomePlayerWidgetBundle.swift
// HomePlayerWidget
//
// Created by Kingkor Roy Tirtho on 15/12/24.
//
import WidgetKit
import SwiftUI
@main
struct HomePlayerWidgetBundle: WidgetBundle {
var body: some Widget {
HomePlayerWidget()
}
}