forked from shadowfacts/Tusker
Nothing to see here
This commit is contained in:
parent
a18dfc38af
commit
508eef8c07
|
@ -11,12 +11,20 @@ import Pachyderm
|
||||||
|
|
||||||
struct MainComposeTextView: View {
|
struct MainComposeTextView: View {
|
||||||
@ObservedObject var draft: Draft
|
@ObservedObject var draft: Draft
|
||||||
let placeholder: Text = {
|
@State private var placeholder: Text = {
|
||||||
let components = Calendar.current.dateComponents([.month, .day], from: Date())
|
let components = Calendar.current.dateComponents([.month, .day], from: Date())
|
||||||
if components.month == 9 && components.day == 21 {
|
if components.month == 3 && components.day == 14 {
|
||||||
|
if Date().formatted(date: .numeric, time: .omitted).starts(with: "3") {
|
||||||
|
return Text("Happy π day!")
|
||||||
|
}
|
||||||
|
} else if components.month == 9 && components.day == 21 {
|
||||||
return Text("Do you remember?")
|
return Text("Do you remember?")
|
||||||
} else if components.month == 10 && components.day == 31 {
|
} else if components.month == 10 && components.day == 31 {
|
||||||
return Text("Post something spooky!")
|
if .random() {
|
||||||
|
return Text("Post something spooky!")
|
||||||
|
} else {
|
||||||
|
return Text("Any questions?")
|
||||||
|
}
|
||||||
}
|
}
|
||||||
return Text("What's on your mind?")
|
return Text("What's on your mind?")
|
||||||
}()
|
}()
|
||||||
|
|
Loading…
Reference in New Issue