Xamarin Forms #49: Layout CollectionView | Add SearchBar & EmptyView

Поділитися
Вставка
  • Опубліковано 18 гру 2024

КОМЕНТАРІ • 10

  • @Mikaelson08
    @Mikaelson08  3 роки тому +1

    🔔If you like the video, give this video a thumbs up and consider subscribing, and hit the bell button to keep you updated. Thanks! Keep Safe!

  • @pentoxide2465
    @pentoxide2465 2 роки тому +2

    This series is so helpful. Thank you again!

  • @mallen1846
    @mallen1846 3 роки тому +1

    Nice video, clear and concise and easy to follow. You have a new subscriber 😁

  • @edmundoguerrero9802
    @edmundoguerrero9802 2 роки тому +1

    Excelente video, gracias por compartirlo.

  • @techtv1713
    @techtv1713 3 роки тому +1

    Thanks!

  • @egonzalez5276
    @egonzalez5276 2 роки тому +3

    Nice video but I seem to have a mini problem.
    My Collection is Title Case (the video is as well). And the search bar is case sensitive and I don't want that
    example of my problem is at 6:18 in your video were you seem to have the same problem
    edit for future people having same problem:
    simple add this 3 lines of code to SearchBar_TextChanged
    string data = searchBar.Text;
    TextInfo myTI = new CultureInfo("en-US", false).TextInfo;
    searchBar.Text = myTI.ToTitleCase(data);
    //var filterlist should be here
    using System.Globalization; will also be required

  • @jamunaperumal3592
    @jamunaperumal3592 2 роки тому

    Thanks, Nice video... Clearly could be understandable. One more request selection image and view the full image on the next page.. How to write code for this.