mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00

* 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
17 lines
259 B
Swift
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()
|
|
}
|
|
}
|