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
87 lines
2.4 KiB
Swift
87 lines
2.4 KiB
Swift
//
|
|
// HomePlayerWidget.swift
|
|
// HomePlayerWidget
|
|
//
|
|
// Created by Kingkor Roy Tirtho on 15/12/24.
|
|
//
|
|
|
|
import WidgetKit
|
|
import SwiftUI
|
|
|
|
private let widgetGroupId = "group.spotube_home_player_widget"
|
|
|
|
struct Provider: TimelineProvider {
|
|
func placeholder(in context: Context) -> SimpleEntry {
|
|
SimpleEntry(date: Date(), emoji: "😀")
|
|
}
|
|
|
|
func getSnapshot(in context: Context, completion: @escaping (SimpleEntry) -> ()) {
|
|
let entry = SimpleEntry(date: Date(), emoji: "😀")
|
|
completion(entry)
|
|
}
|
|
|
|
func getTimeline(in context: Context, completion: @escaping (Timeline<Entry>) -> ()) {
|
|
var entries: [SimpleEntry] = []
|
|
|
|
// Generate a timeline consisting of five entries an hour apart, starting from the current date.
|
|
let currentDate = Date()
|
|
for hourOffset in 0 ..< 5 {
|
|
let entryDate = Calendar.current.date(byAdding: .hour, value: hourOffset, to: currentDate)!
|
|
let entry = SimpleEntry(date: entryDate, emoji: "😀")
|
|
entries.append(entry)
|
|
}
|
|
|
|
let timeline = Timeline(entries: entries, policy: .atEnd)
|
|
completion(timeline)
|
|
}
|
|
|
|
// func relevances() async -> WidgetRelevances<Void> {
|
|
// // Generate a list containing the contexts this widget is relevant in.
|
|
// }
|
|
}
|
|
|
|
struct SimpleEntry: TimelineEntry {
|
|
let date: Date
|
|
let emoji: String
|
|
}
|
|
|
|
struct HomePlayerWidgetEntryView : View {
|
|
var entry: Provider.Entry
|
|
|
|
var body: some View {
|
|
VStack {
|
|
Text("Time:")
|
|
Text(entry.date, style: .time)
|
|
|
|
Text("Emoji:")
|
|
Text(entry.emoji)
|
|
}
|
|
}
|
|
}
|
|
|
|
struct HomePlayerWidget: Widget {
|
|
let kind: String = "HomePlayerWidget"
|
|
|
|
var body: some WidgetConfiguration {
|
|
StaticConfiguration(kind: kind, provider: Provider()) { entry in
|
|
if #available(iOS 17.0, *) {
|
|
HomePlayerWidgetEntryView(entry: entry)
|
|
.containerBackground(.fill.tertiary, for: .widget)
|
|
} else {
|
|
HomePlayerWidgetEntryView(entry: entry)
|
|
.padding()
|
|
.background()
|
|
}
|
|
}
|
|
.configurationDisplayName("My Widget")
|
|
.description("This is an example widget.")
|
|
}
|
|
}
|
|
|
|
#Preview(as: .systemSmall) {
|
|
HomePlayerWidget()
|
|
} timeline: {
|
|
SimpleEntry(date: .now, emoji: "😀")
|
|
SimpleEntry(date: .now, emoji: "🤩")
|
|
}
|