mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-12 07:20:45 +00:00
* feat(ios): add live activity connection status and cleanup Add lock-screen/Dynamic Island connection health states and prune duplicate/stale activities before reuse. This intentionally excludes AI/title generation and heavier UX rewrites from #27488. Co-authored-by: leepokai <1663017+leepokai@users.noreply.github.com> * fix(ios): treat ended live activities as inactive * chore(changelog): add PR reference and author thanks --------- Co-authored-by: leepokai <1663017+leepokai@users.noreply.github.com>
10 lines
158 B
Swift
10 lines
158 B
Swift
import SwiftUI
|
|
import WidgetKit
|
|
|
|
@main
|
|
struct OpenClawActivityWidgetBundle: WidgetBundle {
|
|
var body: some Widget {
|
|
OpenClawLiveActivity()
|
|
}
|
|
}
|