fix de la barre de recherche pour la passer en transprent et fix le bouton de setting

This commit is contained in:
sartron_Northblue
2025-09-12 13:57:31 +04:00
parent 1b04d66de9
commit 5c15c195a9
2 changed files with 15 additions and 74 deletions
+15 -7
View File
@@ -202,11 +202,15 @@ class HeroSectionWidget extends StatelessWidget {
child: Container(
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 4),
decoration: BoxDecoration(
color: Colors.white.withOpacity(0.9),
color: Colors.black.withOpacity(0.3),
borderRadius: BorderRadius.circular(16),
border: Border.all(
color: Colors.white.withOpacity(0.2),
width: 1,
),
boxShadow: [
BoxShadow(
color: Colors.black.withOpacity(0.1),
color: Colors.black.withOpacity(0.2),
blurRadius: 10,
offset: const Offset(0, 4),
),
@@ -216,7 +220,7 @@ class HeroSectionWidget extends StatelessWidget {
children: [
Icon(
Icons.search,
color: AppTheme.textSecondary,
color: Colors.white.withOpacity(0.8),
size: 24,
),
const SizedBox(width: 12),
@@ -224,7 +228,7 @@ class HeroSectionWidget extends StatelessWidget {
child: Text(
'Search your destination...',
style: Theme.of(context).textTheme.bodyLarge?.copyWith(
color: AppTheme.textSecondary,
color: Colors.white.withOpacity(0.8),
),
),
),
@@ -232,13 +236,17 @@ class HeroSectionWidget extends StatelessWidget {
width: 40,
height: 40,
decoration: BoxDecoration(
color: Colors.grey.shade100,
color: Colors.white,
borderRadius: BorderRadius.circular(12),
border: Border.all(
color: Colors.white.withOpacity(0.3),
width: 1,
),
),
child: Icon(
Icons.tune,
color: AppTheme.textSecondary,
size: 20,
color: Colors.black,
size: 30,
),
),
],