Files
openclaw-openclaw/apps/ios/Sources/Chat/ChatTranscriptShareSheet.swift
Peter Steinberger 8c19dbfb62 feat(ios): export chat transcripts as Markdown via the share sheet (#100417)
* feat(ios): export chat transcripts as Markdown via the share sheet

* chore(ios): sync native i18n inventory
2026-07-05 22:14:44 +01:00

13 lines
381 B
Swift

import SwiftUI
import UIKit
struct ChatTranscriptShareSheet: UIViewControllerRepresentable {
let fileURL: URL
func makeUIViewController(context _: Context) -> UIActivityViewController {
UIActivityViewController(activityItems: [self.fileURL], applicationActivities: nil)
}
func updateUIViewController(_: UIActivityViewController, context _: Context) {}
}