refactor: optimize chat input layout and enhance drawer functionality with loading indicators

This commit is contained in:
cogwheel0
2025-08-25 15:50:25 +05:30
parent d6f96ff5c5
commit f934c59d19
4 changed files with 153 additions and 117 deletions

View File

@@ -177,7 +177,8 @@ class OfflineAwareButton extends ConsumerWidget {
return Tooltip(
message: !enabled
? (offlineTooltip ?? AppLocalizations.of(context)!.featureRequiresInternet)
? (offlineTooltip ??
AppLocalizations.of(context)!.featureRequiresInternet)
: '',
child: FilledButton(onPressed: enabled ? onPressed : null, child: child),
);