small theme changes #3

Merged
marco merged 4 commits from development into main 2026-01-21 15:05:11 +01:00
Showing only changes of commit be6020d6c5 - Show all commits

View File

@@ -1,5 +1,7 @@
import 'package:flutter/material.dart'; import 'package:flutter/material.dart';
import '../../l10n/app_localizations.dart';
class SearchBarWidget extends StatelessWidget { class SearchBarWidget extends StatelessWidget {
const SearchBarWidget({ const SearchBarWidget({
super.key, super.key,
@@ -28,6 +30,7 @@ class SearchBarWidget extends StatelessWidget {
}, },
icon: Icon(Icons.delete_outline_outlined), icon: Icon(Icons.delete_outline_outlined),
), ),
labelText: AppLocalizations.of(context)!.search,
), ),
); );
} }