mirror of
https://github.com/lumaa-dev/BubbleApp.git
synced 2025-01-23 15:10:00 +01:00
To do list
This commit is contained in:
parent
505e7d1eae
commit
202cc7ce54
12
README.md
12
README.md
@ -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
|
||||
|
13
Threaded/Components/ListStyle.swift
Normal file
13
Threaded/Components/ListStyle.swift
Normal 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()
|
||||
}
|
3
Threaded/Data/UserPreferences.swift
Normal file
3
Threaded/Data/UserPreferences.swift
Normal file
@ -0,0 +1,3 @@
|
||||
//Made by Lumaa
|
||||
|
||||
import Foundation
|
13
Threaded/Views/PostDetailsView.swift
Normal file
13
Threaded/Views/PostDetailsView.swift
Normal 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()
|
||||
}
|
13
Threaded/Views/Settings/AppearenceView.swift
Normal file
13
Threaded/Views/Settings/AppearenceView.swift
Normal 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()
|
||||
}
|
Loading…
Reference in New Issue
Block a user