Ionic Angular - Infinite Scroll

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

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

  • @antoniocarlosdev6104
    @antoniocarlosdev6104 2 ปีที่แล้ว

    very, very good!

  • @janfornication
    @janfornication 2 ปีที่แล้ว

    how do you handle the load on larger screens or with less items per page e.g. 5?

    • @CodingTechnyks
      @CodingTechnyks  2 ปีที่แล้ว

      You can handle using infinite scroll or even virtual scroll too
      It’s shown in the video, change the number of items to fetch per infinite scroll event trigger

    • @janfornication
      @janfornication 2 ปีที่แล้ว

      @@CodingTechnyks yeah but this does not work. Try to change perPage to 3 and maximize your viewport. infinite scroll does not work without a scroll"bar"

  • @AGUNGKAYA
    @AGUNGKAYA 2 ปีที่แล้ว

    Wow. What i am lookir for

  • @fadikariss9626
    @fadikariss9626 2 ปีที่แล้ว

    I want a coupon for a Udemy course🥰

    • @CodingTechnyks
      @CodingTechnyks  2 ปีที่แล้ว +1

      www.udemy.com/course/ionic5-beginner-to-advanced-build-food-delivery-app/?couponCode=AUG389

    • @fadikariss9626
      @fadikariss9626 2 ปีที่แล้ว

      @@CodingTechnyks Thank you very much I bought

    • @fadikariss9626
      @fadikariss9626 2 ปีที่แล้ว

      @@CodingTechnyks I want from you a video about a wallet with Firebase, it will be a complete application with the admin application, please

    • @CodingTechnyks
      @CodingTechnyks  2 ปีที่แล้ว

      I will cover all of it
      But will take time
      Lots of content is pending

  • @aaiz37
    @aaiz37 2 ปีที่แล้ว

    But it's triggered only once

  • @AGUNGKAYA
    @AGUNGKAYA 2 ปีที่แล้ว

    Sir, let say I have data like {{ data.news }} .. content of data like: "I want to go to [school] in the [morning]". How to make the word between [ ] become bold? and the bracket itself not printed?

    • @CodingTechnyks
      @CodingTechnyks  2 ปีที่แล้ว

      You have to pass a function instead of data.news, pass data.news as parameter and in that function you work with the string and find the expression you are looking for and replace [ with and ] with
      Remember in p tag, you have to use innerhtml to implement the b tag

    • @AGUNGKAYA
      @AGUNGKAYA 2 ปีที่แล้ว

      @@CodingTechnyks thank you Sir, I’ll try