Compare commits
1 Commits
profile_co
...
remove-mys
| Author | SHA1 | Date | |
|---|---|---|---|
|
71ec18f6c6
|
@@ -60,21 +60,8 @@ struct NotificationsView: View {
|
|||||||
|
|
||||||
@Environment(\.colorScheme) var colorScheme
|
@Environment(\.colorScheme) var colorScheme
|
||||||
|
|
||||||
var mystery: some View {
|
|
||||||
let profile_txn = state.profiles.lookup(id: state.pubkey)
|
|
||||||
let profile = profile_txn?.unsafeUnownedValue
|
|
||||||
return VStack(spacing: 20) {
|
|
||||||
Text("Wake up, \(Profile.displayName(profile: profile, pubkey: state.pubkey).displayName.truncate(maxLength: 50))", comment: "Text telling the user to wake up, where the argument is their display name.")
|
|
||||||
Text("You are dreaming...", comment: "Text telling the user that they are dreaming.")
|
|
||||||
}
|
|
||||||
.id("what")
|
|
||||||
}
|
|
||||||
|
|
||||||
var body: some View {
|
var body: some View {
|
||||||
TabView(selection: $filter_state) {
|
TabView(selection: $filter_state) {
|
||||||
// This is needed or else there is a bug when switching from the 3rd or 2nd tab to first. no idea why.
|
|
||||||
mystery
|
|
||||||
|
|
||||||
NotificationTab(
|
NotificationTab(
|
||||||
NotificationFilter(
|
NotificationFilter(
|
||||||
state: .all,
|
state: .all,
|
||||||
|
|||||||
@@ -25,11 +25,6 @@ struct PostingTimelineView: View {
|
|||||||
@State var headerHeight: CGFloat = 0
|
@State var headerHeight: CGFloat = 0
|
||||||
@Binding var headerOffset: CGFloat
|
@Binding var headerOffset: CGFloat
|
||||||
@SceneStorage("PostingTimelineView.filter_state") var filter_state : FilterState = .posts_and_replies
|
@SceneStorage("PostingTimelineView.filter_state") var filter_state : FilterState = .posts_and_replies
|
||||||
|
|
||||||
var mystery: some View {
|
|
||||||
Text("Are you lost?", comment: "Text asking the user if they are lost in the app.")
|
|
||||||
.id("what")
|
|
||||||
}
|
|
||||||
|
|
||||||
func content_filter(_ fstate: FilterState) -> ((NostrEvent) -> Bool) {
|
func content_filter(_ fstate: FilterState) -> ((NostrEvent) -> Bool) {
|
||||||
var filters = ContentFilters.defaults(damus_state: damus_state)
|
var filters = ContentFilters.defaults(damus_state: damus_state)
|
||||||
@@ -95,9 +90,6 @@ struct PostingTimelineView: View {
|
|||||||
VStack {
|
VStack {
|
||||||
ZStack {
|
ZStack {
|
||||||
TabView(selection: $filter_state) {
|
TabView(selection: $filter_state) {
|
||||||
// This is needed or else there is a bug when switching from the 3rd or 2nd tab to first. no idea why.
|
|
||||||
mystery
|
|
||||||
|
|
||||||
contentTimelineView(filter: content_filter(.posts))
|
contentTimelineView(filter: content_filter(.posts))
|
||||||
.tag(FilterState.posts)
|
.tag(FilterState.posts)
|
||||||
.id(FilterState.posts)
|
.id(FilterState.posts)
|
||||||
|
|||||||
Reference in New Issue
Block a user