@@AppDevelopmentAcademy Thank you. My solution for adding a blur was .blur(radius: addBlur(distance: abs(distance(view.id)))) then called method: func addBlur(distance: Double) -> Double { let blurRadius: Double = distance == 0 ? 0 : 2.8 return blurRadius } next is to add a [Next] button that will switch between each view in the "Carousel" so the user has options.
thanks man!! i learning through you
You're welcome. Please do subscribe.
Very interesting images. Where did you source them?
Hello. They are ai generated
🥰🥰🥰
i want to make this using UIKit.Can anyone suggest a suitable library?
The CarouselViewChild is missing from source code
Thanks for informing. I have added the file. Please check
@@AppDevelopmentAcademy thanks. Also, if I wanted add a blur to the views in the "background" is there a simple way to do that?
@@jrandombird808 This might help you : ruclips.net/video/wypPAMLb5Dk/видео.htmlsi=PCb-SQYJ3aQ8ZAjo
@@AppDevelopmentAcademy Thank you. My solution for adding a blur was .blur(radius: addBlur(distance: abs(distance(view.id))))
then called method:
func addBlur(distance: Double) -> Double {
let blurRadius: Double = distance == 0 ? 0 : 2.8
return blurRadius
}
next is to add a [Next] button that will switch between each view in the "Carousel" so the user has options.