To do list

This commit is contained in:
Lumaa 2024-01-04 18:11:07 +01:00
parent 505e7d1eae
commit 202cc7ce54
5 changed files with 54 additions and 0 deletions

View File

@ -12,3 +12,15 @@ Threaded is a 100% free, made in SwiftUI, [#OpenSource](https://github.com/luma
- [IceCubesApp](https://github.com/dimillian/IceCubesApp) by [@dimillian](https://github.com/dimillian)
- [SwiftSoup](https://github.com/scinfu/SwiftSoup)
- [Nuke](https://github.com/kean/Nuke)
## To-do list
- [ ] Fix all bugs and implement features cited with `TODO`
- [ ] Launch screen like Threads
- [ ] Live Activity when posting (for large content/attachments)
- [ ] Share posts as [images](https://developer.apple.com/documentation/swiftui/imagerenderer) and copy/share text to clipboard
- [ ] Animate T while reloading timeline

View File

@ -0,0 +1,13 @@
//Made by Lumaa
import SwiftUI
struct ListStyle: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
ListStyle()
}

View File

@ -0,0 +1,3 @@
//Made by Lumaa
import Foundation

View File

@ -0,0 +1,13 @@
//Made by Lumaa
import SwiftUI
struct PostDetailsView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
PostDetailsView()
}

View File

@ -0,0 +1,13 @@
//Made by Lumaa
import SwiftUI
struct AppearenceView: View {
var body: some View {
Text(/*@START_MENU_TOKEN@*/"Hello, World!"/*@END_MENU_TOKEN@*/)
}
}
#Preview {
AppearenceView()
}