Add new screen, composer event method and ui elements

This commit is contained in:
ismailgulek
2022-02-28 17:46:19 +03:00
parent 835c259610
commit 53588b7910
3 changed files with 24 additions and 3 deletions
+9
View File
@@ -292,4 +292,13 @@ extension Analytics: MXAnalyticsDelegate {
func trackContactsAccessGranted(_ granted: Bool) {
// Do we still want to track this?
}
func trackEventComposed(inThread: Bool, isEditing: Bool, isReply: Bool, startsThread: Bool) {
let event = AnalyticsEvent.Composer(inThread: inThread,
isEditing: isEditing,
isReply: isReply,
startsThread: startsThread)
capture(event: event)
}
}