From be6020d6c57e13632f63e388acaebe7061aa4bf6 Mon Sep 17 00:00:00 2001 From: marco Date: Wed, 21 Jan 2026 14:44:36 +0100 Subject: [PATCH] added label text --- lib/widgets/search_widgets/search_bar_widget.dart | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lib/widgets/search_widgets/search_bar_widget.dart b/lib/widgets/search_widgets/search_bar_widget.dart index 9b02652..5846f11 100644 --- a/lib/widgets/search_widgets/search_bar_widget.dart +++ b/lib/widgets/search_widgets/search_bar_widget.dart @@ -1,5 +1,7 @@ import 'package:flutter/material.dart'; +import '../../l10n/app_localizations.dart'; + class SearchBarWidget extends StatelessWidget { const SearchBarWidget({ super.key, @@ -28,6 +30,7 @@ class SearchBarWidget extends StatelessWidget { }, icon: Icon(Icons.delete_outline_outlined), ), + labelText: AppLocalizations.of(context)!.search, ), ); }