add search fav

This commit is contained in:
Phuoc Nguyen
2025-11-19 10:50:21 +07:00
parent fc4711a18e
commit 03a7b7940a
4 changed files with 530 additions and 136 deletions

View File

@@ -448,20 +448,20 @@ class AddressesPage extends HookConsumerWidget {
if (context.mounted) {
ScaffoldMessenger.of(context).showSnackBar(
SnackBar(
const SnackBar(
content: Row(
children: [
const FaIcon(
FaIcon(
FontAwesomeIcons.circleCheck,
color: Colors.white,
size: 18,
),
const SizedBox(width: 12),
const Text('Đã xóa địa chỉ'),
SizedBox(width: 12),
Text('Đã xóa địa chỉ'),
],
),
backgroundColor: const Color(0xFF10B981),
duration: const Duration(seconds: 2),
backgroundColor: Color(0xFF10B981),
duration: Duration(seconds: 2),
),
);
}