diff --git a/lib/src/app/home/home_page.dart b/lib/src/app/home/home_page.dart index a4f6968..f4cc4d4 100644 --- a/lib/src/app/home/home_page.dart +++ b/lib/src/app/home/home_page.dart @@ -42,7 +42,7 @@ class HomepageState extends State { ), ConstrainedBox( constraints: BoxConstraints( - maxHeight: screenHeight * 0.2, // 20% da altura da tela + maxHeight: screenHeight * 0.2, ), child: const PharmacyComponentState(), ), @@ -57,7 +57,7 @@ class HomepageState extends State { ), ConstrainedBox( constraints: BoxConstraints( - maxHeight: screenHeight * 0.2, // 60% da altura da tela + maxHeight: screenHeight * 0.2, ), child: const BannerComponent(hasPromotion: false), ), @@ -70,15 +70,16 @@ class HomepageState extends State { TextStyle(fontSize: 18, fontWeight: FontWeight.bold), ), ), + // Exibição de catalogo de varios tipo de produtos ConstrainedBox( constraints: BoxConstraints( - maxHeight: screenHeight * 0.2, // 60% da altura da tela + maxHeight: screenHeight * 0.2, ), child: const BannerComponent(hasPromotion: true), ), ConstrainedBox( constraints: BoxConstraints( - maxHeight: screenHeight * 0.2, // 20% da altura da tela + maxHeight: screenHeight * 0.2, ), child: const Divider()), Expert(),