Post

Replies

Boosts

Views

Activity

Reply to Dynamic Type and Widget Layout
To answer my own question: Use ViewThatFits and build views with every possible count. Seems unnecessarily expensive but it works. var body: some View { ViewThatFits { ForEach((1...entry.toDos.count).reversed(), id: \.self) { limit in VStack(alignment: .leading, spacing: 4) { ForEach(entry.toDos.prefix(limit), id: \.self.identifier) { entry in ToDoView(checked: entry.completed, flag: entry.flag, text: entry.name) } if (limit < entry.toDos.count) { Text(String(format:NSLocalizedString("%i more...", comment: "[n] more..."), entry.toDos.count - limit)) .font(.footnote) .foregroundStyle(.secondary) .padding(.leading, 24) .padding(.top, -3) .unredacted() } } } } }
Jul ’23
Reply to Can an App Clip be used to preview file content?
Thanks for replying. From what I’ve read so far an App Clip works as a URL scheme behind the scenes. Without uploading the shared file to my private server (a potential privacy issue) is there a way to pass a mail attachment (or other local file content) to an App Clip? I admit I still have more reading/watching to do, so no need to go into great detail if you can point me in the right direction or tell me it’s impossible at the moment. Basically I want my App Clip to work as a Quicklook Preview extension without having to purchase the app.
Jun ’20