Carousel View | SwiftUI Tutorial

Поделиться
HTML-код
  • Опубликовано: 30 ноя 2024

Комментарии • 11

  • @hawkeye6614
    @hawkeye6614 Год назад

    thanks man!! i learning through you

  • @kenturnbull9679
    @kenturnbull9679 8 месяцев назад

    Very interesting images. Where did you source them?

  • @linuxice0609
    @linuxice0609 Год назад

    🥰🥰🥰

  • @fatimaarshad7482
    @fatimaarshad7482 6 месяцев назад

    i want to make this using UIKit.Can anyone suggest a suitable library?

  • @jrandombird808
    @jrandombird808 8 месяцев назад

    The CarouselViewChild is missing from source code

    • @AppDevelopmentAcademy
      @AppDevelopmentAcademy  8 месяцев назад

      Thanks for informing. I have added the file. Please check

    • @jrandombird808
      @jrandombird808 7 месяцев назад

      @@AppDevelopmentAcademy thanks. Also, if I wanted add a blur to the views in the "background" is there a simple way to do that?

    • @AppDevelopmentAcademy
      @AppDevelopmentAcademy  7 месяцев назад

      @@jrandombird808 This might help you : ruclips.net/video/wypPAMLb5Dk/видео.htmlsi=PCb-SQYJ3aQ8ZAjo

    • @jrandombird808
      @jrandombird808 7 месяцев назад

      @@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.