mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2024-11-26 10:11:00 +00:00
parent
bdf5d3c783
commit
fc63830b27
2 changed files with 4 additions and 0 deletions
|
@ -197,6 +197,9 @@ struct AccountDetailHeaderView: View {
|
|||
if account.bot {
|
||||
Text("🤖")
|
||||
}
|
||||
if account.locked{
|
||||
Text("🔒")
|
||||
}
|
||||
Image(systemName: "calendar")
|
||||
Text("account.joined")
|
||||
Text(joinedAt, style: .date)
|
||||
|
|
|
@ -73,6 +73,7 @@ struct StatusRowHeaderView: View {
|
|||
|
||||
private var dateView: Text {
|
||||
Text(viewModel.status.account.bot ? "🤖 " : "") +
|
||||
Text(viewModel.status.account.locked ? "🔒 " : "") +
|
||||
Text(status.createdAt.relativeFormatted) +
|
||||
Text(" ⸱ ") +
|
||||
Text(Image(systemName: viewModel.status.visibility.iconName))
|
||||
|
|
Loading…
Reference in a new issue