diff --git a/SodaLive/Sources/Content/Detail/ContentDetailView.swift b/SodaLive/Sources/Content/Detail/ContentDetailView.swift index aaf9b8d..ada4106 100644 --- a/SodaLive/Sources/Content/Detail/ContentDetailView.swift +++ b/SodaLive/Sources/Content/Detail/ContentDetailView.swift @@ -72,15 +72,6 @@ struct ContentDetailView: View { isShowPreviewAlert: $viewModel.isShowPreviewAlert ) - if audioContent.price <= 0 || (audioContent.price > 0 && !audioContent.existOrdered) { - BannerAdView(adUnitId: FREE_CONTENT_BANNER_AD_UNIT_ID) - .frame( - width: screenSize().width, - height: GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth(screenSize().width).size.height - ) - .padding(.top, 13.3) - } - ContentDetailInfoView( isExpandDescription: $viewModel.isExpandDescription, isShowPreviewAlert: $viewModel.isShowPreviewAlert, @@ -127,6 +118,15 @@ struct ContentDetailView: View { } } + if audioContent.price <= 0 || (audioContent.price > 0 && !audioContent.existOrdered) { + BannerAdView(adUnitId: FREE_CONTENT_BANNER_AD_UNIT_ID) + .frame( + width: screenSize().width, + height: GADCurrentOrientationAnchoredAdaptiveBannerAdSizeWithWidth(screenSize().width).size.height + ) + .padding(.top, 13.3) + } + Rectangle() .foregroundColor(Color(hex: "232323")) .frame(height: 6.7)