Carousel View | SwiftUI Tutorial

แชร์
ฝัง
  • เผยแพร่เมื่อ 21 ต.ค. 2024

ความคิดเห็น • 11

  • @hawkeye6614
    @hawkeye6614 ปีที่แล้ว

    thanks man!! i learning through you

  • @kenturnbull9679
    @kenturnbull9679 7 หลายเดือนก่อน

    Very interesting images. Where did you source them?

  • @fatimaarshad7482
    @fatimaarshad7482 5 หลายเดือนก่อน

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

  • @linuxice0609
    @linuxice0609 11 หลายเดือนก่อน

    🥰🥰🥰

  • @jrandombird808
    @jrandombird808 6 หลายเดือนก่อน

    The CarouselViewChild is missing from source code

    • @MobileAppsAcademy
      @MobileAppsAcademy  6 หลายเดือนก่อน

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

    • @jrandombird808
      @jrandombird808 6 หลายเดือนก่อน

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

    • @MobileAppsAcademy
      @MobileAppsAcademy  6 หลายเดือนก่อน

      @@jrandombird808 This might help you : th-cam.com/video/wypPAMLb5Dk/w-d-xo.htmlsi=PCb-SQYJ3aQ8ZAjo

    • @jrandombird808
      @jrandombird808 6 หลายเดือนก่อน

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