Browse Source

Make Event in Reply View Scrollable

Closes: #248
Changelog-Fixed: Make reply view scrollable
translations_damus-localizations-en-us-xcloc-localized-contents-en-us-xliff--master_es_419
Joel Klabo 2 years ago
committed by William Casarin
parent
commit
64bb28e017
  1. 4
      damus/Views/ReplyView.swift

4
damus/Views/ReplyView.swift

@ -33,7 +33,9 @@ struct ReplyView: View {
.foregroundColor(.gray)
.font(.footnote)
}
EventView(event: replying_to, highlight: .none, has_action_bar: false, damus: damus, show_friend_icon: true)
ScrollView {
EventView(event: replying_to, highlight: .none, has_action_bar: false, damus: damus, show_friend_icon: true)
}
PostView(replying_to: replying_to, references: gather_reply_ids(our_pubkey: damus.pubkey, from: replying_to))
}
.padding()

Loading…
Cancel
Save