Skip to content

Commit

Permalink
Disable opacity #patch
Browse files Browse the repository at this point in the history
  • Loading branch information
aromanov91 committed Jul 27, 2023
1 parent 1a4488a commit fe38e34
Showing 1 changed file with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -116,13 +116,13 @@ public struct StoreInstuctinsView: View {
.foregroundColor(.onSurfaceHighEmphasis.opacity(0.3))
.frame(width: 30)
.offset(y: screenSize.safeAreaHeight - 300)
.opacity(1 - (offset * 0.01))
//.opacity(1 - (offset * 0.01))
}

StoreFeaturesLargeView()
.paddingContent(.horizontal)
.environmentObject(viewModel)
.opacity(0 + (offset * 0.01))
//.opacity(0 + (offset * 0.01))
}
.padding(.bottom, 220)
}
Expand Down Expand Up @@ -164,13 +164,13 @@ public struct StoreInstuctinsView: View {
.foregroundColor(.onSurfaceHighEmphasis.opacity(0.3))
.frame(width: 30)
.offset(y: screenSize.safeAreaHeight - 300)
.opacity(1 - (offset * 0.01))
//.opacity(1 - (offset * 0.01))
}

StoreFeaturesLargeView()
.paddingContent(.horizontal)
.environmentObject(viewModel)
.opacity(0 + (offset * 0.01))
//.opacity(0 + (offset * 0.01))

if isShowAllPlans {
productsLust(data: data)
Expand Down

0 comments on commit fe38e34

Please sign in to comment.