added label text

This commit is contained in:
2026-01-21 14:44:36 +01:00
parent 5eb58d7cf2
commit be6020d6c5

View File

@@ -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,
),
);
}