fix de la barre de recherche

This commit is contained in:
sartron_Northblue
2025-09-12 14:46:09 +04:00
parent dd604fa9e1
commit ce230d0637
8 changed files with 6 additions and 6 deletions
BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

BIN
View File
Binary file not shown.

After

Width:  |  Height:  |  Size: 1.4 MiB

+6 -6
View File
@@ -197,15 +197,15 @@ class HeroSectionWidget extends StatelessWidget {
), ),
Positioned( Positioned(
bottom: 20, bottom: 20,
left: 8, left: 15,
right: 8, right: 15,
child: Container( child: Container(
padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 4), padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 4),
decoration: BoxDecoration( decoration: BoxDecoration(
color: Colors.black.withOpacity(0.3), color: Colors.white.withOpacity(0.2),
borderRadius: BorderRadius.circular(16), borderRadius: BorderRadius.circular(16),
border: Border.all( border: Border.all(
color: Colors.white.withOpacity(0.2), color: Colors.white.withOpacity(0.3),
width: 1, width: 1,
), ),
boxShadow: [ boxShadow: [
@@ -220,7 +220,7 @@ class HeroSectionWidget extends StatelessWidget {
children: [ children: [
Icon( Icon(
Icons.search, Icons.search,
color: Colors.white.withOpacity(0.8), color: Colors.white,
size: 24, size: 24,
), ),
const SizedBox(width: 12), const SizedBox(width: 12),
@@ -228,7 +228,7 @@ class HeroSectionWidget extends StatelessWidget {
child: Text( child: Text(
'Search your destination...', 'Search your destination...',
style: Theme.of(context).textTheme.bodyLarge?.copyWith( style: Theme.of(context).textTheme.bodyLarge?.copyWith(
color: Colors.white.withOpacity(0.8), color: Colors.white,
), ),
), ),
), ),