|
...
|
...
|
@@ -267,22 +267,23 @@ class TodayAdCarousel extends StatelessWidget { |
|
|
|
!controller.userStateService.isBound;
|
|
|
|
|
|
|
|
final activeBanners = <Widget>[];
|
|
|
|
if (showHrv) {
|
|
|
|
if (showNotificationAuthorization) {
|
|
|
|
activeBanners.add(
|
|
|
|
TodayHrvAdBanner(
|
|
|
|
TodayNotificationAuthorizationBanner(
|
|
|
|
controller: controller,
|
|
|
|
showMargin: false,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
if (showNotificationAuthorization) {
|
|
|
|
if (showHrv) {
|
|
|
|
activeBanners.add(
|
|
|
|
TodayNotificationAuthorizationBanner(
|
|
|
|
TodayHrvAdBanner(
|
|
|
|
controller: controller,
|
|
|
|
showMargin: false,
|
|
|
|
),
|
|
|
|
);
|
|
|
|
}
|
|
|
|
|
|
|
|
if (showPartner) {
|
|
|
|
activeBanners.add(
|
|
|
|
TodayPartnerAdBanner(
|
...
|
...
|
|