diff --git a/flutter_01.png b/flutter_01.png new file mode 100644 index 0000000..dd4630f Binary files /dev/null and b/flutter_01.png differ diff --git a/flutter_02.png b/flutter_02.png new file mode 100644 index 0000000..6455f1d Binary files /dev/null and b/flutter_02.png differ diff --git a/flutter_03.png b/flutter_03.png new file mode 100644 index 0000000..41c6096 Binary files /dev/null and b/flutter_03.png differ diff --git a/flutter_04.png b/flutter_04.png new file mode 100644 index 0000000..5922d6c Binary files /dev/null and b/flutter_04.png differ diff --git a/flutter_05.png b/flutter_05.png new file mode 100644 index 0000000..39027ac Binary files /dev/null and b/flutter_05.png differ diff --git a/flutter_06.png b/flutter_06.png new file mode 100644 index 0000000..f3406b8 Binary files /dev/null and b/flutter_06.png differ diff --git a/flutter_07.png b/flutter_07.png new file mode 100644 index 0000000..f3406b8 Binary files /dev/null and b/flutter_07.png differ diff --git a/lib/widgets/hero_section_widget.dart b/lib/widgets/hero_section_widget.dart index c8a5e3b..b93f1e0 100644 --- a/lib/widgets/hero_section_widget.dart +++ b/lib/widgets/hero_section_widget.dart @@ -197,15 +197,15 @@ class HeroSectionWidget extends StatelessWidget { ), Positioned( bottom: 20, - left: 8, - right: 8, + left: 15, + right: 15, child: Container( padding: const EdgeInsets.symmetric(horizontal: 20, vertical: 4), decoration: BoxDecoration( - color: Colors.black.withOpacity(0.3), + color: Colors.white.withOpacity(0.2), borderRadius: BorderRadius.circular(16), border: Border.all( - color: Colors.white.withOpacity(0.2), + color: Colors.white.withOpacity(0.3), width: 1, ), boxShadow: [ @@ -220,7 +220,7 @@ class HeroSectionWidget extends StatelessWidget { children: [ Icon( Icons.search, - color: Colors.white.withOpacity(0.8), + color: Colors.white, size: 24, ), const SizedBox(width: 12), @@ -228,7 +228,7 @@ class HeroSectionWidget extends StatelessWidget { child: Text( 'Search your destination...', style: Theme.of(context).textTheme.bodyLarge?.copyWith( - color: Colors.white.withOpacity(0.8), + color: Colors.white, ), ), ),