fix/feat: мелкие фиксы, и доп. инфа в info

This commit is contained in:
Jganenokk
2026-08-08 23:55:10 +07:00
parent 474923328b
commit 45297e4aff
92 changed files with 2407 additions and 1195 deletions
@@ -27,6 +27,7 @@ import '../photo_viewer.dart';
import '../reload_on_reconnect.dart';
import '../small_spinner.dart';
import '../swipe_route.dart';
import '../sheet_helpers.dart';
enum SharedContentKind { media, files, voice, links }
@@ -153,9 +154,7 @@ Future<void> _showItemMenu(BuildContext context, List<_MenuAction> actions) {
return showModalBottomSheet<void>(
context: context,
backgroundColor: cs.surfaceContainerHigh,
shape: const RoundedRectangleBorder(
borderRadius: BorderRadius.vertical(top: Radius.circular(20)),
),
shape: kSheetShape,
builder: (sheetContext) => SafeArea(
child: Column(
mainAxisSize: MainAxisSize.min,
@@ -419,7 +418,7 @@ class _CommonChatsTabState extends State<CommonChatsTab>
final cs = Theme.of(context).colorScheme;
if (_loading) return _loadingState(cs);
if (_chats.isEmpty) {
return _emptyState(cs, widget.emptyLabel, Icons.group);
return _emptyState(cs, widget.emptyLabel, Symbols.group);
}
return Container(