Add the ability to filter search by date and author.

This commit is contained in:
Greyson Parrelli
2026-03-19 12:20:10 -04:00
committed by Cody Henthorne
parent 72cbe61f6c
commit 7253aaaa14
21 changed files with 612 additions and 26 deletions

View File

@@ -1215,6 +1215,14 @@ class MainActivity :
toolbarViewModel.setSearchQuery(query)
}
override fun onSearchFilterClick() {
supportFragmentManager.fragments.forEach { fragment ->
if (fragment is ConversationListFragment) {
fragment.showSearchFilterBottomSheet()
}
}
}
override fun onNotificationProfileTooltipDismissed() {
SignalStore.notificationProfile.hasSeenTooltip = true
toolbarViewModel.setShowNotificationProfilesTooltip(false)