From 6150846f2486cbd726898feff9b1a1c27d7f26c6 Mon Sep 17 00:00:00 2001 From: Lumaa Date: Sun, 21 Jan 2024 13:07:26 +0100 Subject: [PATCH] added DeepL API link --- README.md | 2 +- Threaded/Views/SafariView.swift | 13 +++++++++++++ 2 files changed, 14 insertions(+), 1 deletion(-) create mode 100644 Threaded/Views/SafariView.swift diff --git a/README.md b/README.md index c07b3b4..6a55801 100644 --- a/README.md +++ b/README.md @@ -25,7 +25,7 @@ Threaded is a 100% free, made in SwiftUI, [#OpenSource](https://github.com/luma - [x] Launch screen like Threads -- [ ] Translating posts in other languages (suggested by [@Damon](https://mozilla.social/@Damon)) +- [ ] [Translating](https://www.deepl.com/en/pro-api) posts in other languages (suggested by [@Damon](https://mozilla.social/@Damon)) - [ ] [Live Activity](https://github.com/lumaa-dev/Too-Much-Code/blob/main/TMC-Widget/TMC_LAProgress.swift) when posting (for large content/attachments, like Instagram already does) diff --git a/Threaded/Views/SafariView.swift b/Threaded/Views/SafariView.swift new file mode 100644 index 0000000..50c2384 --- /dev/null +++ b/Threaded/Views/SafariView.swift @@ -0,0 +1,13 @@ +//Made by Lumaa + +import SwiftUI + +struct SafariView: View { + var body: some View { + Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/) + } +} + +#Preview { + SafariView() +}