From a72c9b40f90d14da3b5aba9ca97bf306177a2099 Mon Sep 17 00:00:00 2001 From: noxzion Date: Sun, 15 Mar 2026 20:08:38 +0500 Subject: [PATCH] =?UTF-8?q?=D0=9D=D0=B5=D0=B1=D0=BE=D0=BB=D1=8C=D1=88?= =?UTF-8?q?=D0=BE=D0=B5=20=D0=B8=D0=B7=D0=BC=D0=B5=D0=BD=D0=B5=D0=BD=D0=B8?= =?UTF-8?q?=D0=B5?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../screens/chats/chat_list_screen.dart | 18 +++++++++--------- 1 file changed, 9 insertions(+), 9 deletions(-) diff --git a/lib/frontend/screens/chats/chat_list_screen.dart b/lib/frontend/screens/chats/chat_list_screen.dart index 8288825..d2e7c66 100644 --- a/lib/frontend/screens/chats/chat_list_screen.dart +++ b/lib/frontend/screens/chats/chat_list_screen.dart @@ -112,21 +112,21 @@ class _ChatListScreenState extends State { padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 8), physics: const BouncingScrollPhysics(), children: [ - _buildCategoryChip('Все чаты'), + _buildFolderChip('Все чаты'), const SizedBox(width: 8), - _buildCategoryChip('Контакты'), + _buildFolderChip('Контакты'), const SizedBox(width: 8), - _buildCategoryChip('Пидоры'), + _buildFolderChip('Пидоры'), const SizedBox(width: 8), - _buildCategoryChip('Каналы'), + _buildFolderChip('Каналы'), const SizedBox(width: 8), - _buildCategoryChip('Группы'), + _buildFolderChip('Группы'), const SizedBox(width: 8), - _buildCategoryChip('Боты'), + _buildFolderChip('Боты'), const SizedBox(width: 8), - _buildCategoryChip('Избранное'), + _buildFolderChip('Избранное'), const SizedBox(width: 8), - _buildCategoryChip('Архив'), + _buildFolderChip('Архив'), ], ), ), @@ -306,7 +306,7 @@ class _ChatListScreenState extends State { ); } - Widget _buildCategoryChip(String title) { + Widget _buildFolderChip(String title) { bool isSelected = _selectedCategory == title; return GestureDetector( onTap: () => setState(() => _selectedCategory = title),