feat: Implement push notification suppression for active chats, prevent duplicate self-messages, update the chat typing indicator, and add back buttons to static screens.

This commit is contained in:
pradeepkumar
2026-03-18 17:24:32 +05:30
parent cde137e07b
commit a4aa9bfe25
8 changed files with 196 additions and 35 deletions

View File

@@ -15,7 +15,8 @@ int _currentTabIndex(BuildContext context) {
return 1;
}
if (location.startsWith('/profile')) return 3;
return 0; // home and everything else
if (location == '/home') return 0;
return -1; // other pages (about, contact, faq, etc.) — no tab highlighted
}
class AppBottomNavBar extends ConsumerWidget {