fix(ui): center folder tab labels in chat list

This commit is contained in:
klockky
2026-04-05 13:28:22 +03:00
parent 6cede4a694
commit b3af3c959f
3 changed files with 9 additions and 4 deletions
@@ -2,7 +2,10 @@ import 'package:flutter/material.dart';
import 'package:google_fonts/google_fonts.dart';
void showCustomNotification(BuildContext context, String message) {
final overlay = Overlay.of(context);
showCustomNotificationOnOverlay(Overlay.of(context), message);
}
void showCustomNotificationOnOverlay(OverlayState overlay, String message) {
final entry = OverlayEntry(
builder: (context) => CustomNotification(message: message),
);