Customizable Tabs with TabView for Xamarin.Forms

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

КОМЕНТАРІ • 172

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

    Hi Gerald, thanks for the video, the control looks great.
    I would be interested to use this for swiping between pages, and to have hooks for appearing/appeared/disappearing/disappeared on each tab, so I an register / deregister for view updates and keep the memory profile low. On that point, lazy loading of tabs would be a real plus too.
    Cheers!

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

      Somewhere in the other comments there is a link to the issue for lazy loading. Be sure to put your thumbs up on that. Thanks!

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

    Hey bud, how would you go about implementing this with Shell? Or would you suggest to rip shell out and just use the older approach?

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

      Shell is something that is thought about to integrate it with. Not there at the moment though. So it’s either Shell or TabView

    • @justadaniel
      @justadaniel 3 роки тому

      @@jfversluis thanks man! 🙂

  • @shiwanz2758
    @shiwanz2758 Рік тому

    Hi Gerald. I'm trying to change the format of the letters of tabs because it appears always in upper case. Is there something like TextTransform="none" in the tabViewItem?

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

    Hi Gerald, is there a way to customize the content of the tab itself, e.g. layout horizontally with icon and text, or, add a stacklayout to the tab (not the page the tab will show, but the tab itself) to allow any content at all?

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

      He Deakin! I don't think we can do that at the moment... Looking at the source we just have an icon and text for now... Also have a look at the samples in our sample app: github.com/xamarin/XamarinCommunityToolkit/tree/main/samples/XCT.Sample/Pages/Views/TabView
      This is definitely a good request though! If you could spare the time please see if a request is already somewhere in the issues and if not open a new issue with as much detail as you can possibly think of. Thanks!

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

    Hi. Thanks for the tutorial. I thought I would try this and whist it is OK for my iOS build it is not OK for my MacOS build. The MacOS is showing a button bar at the top but nothing is showing in the content of the tab items.

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

      Not sure how much of this is supported on macOS, but please open an issue on the repository so we can track it and have a look. I'll be honest and say that macOS is probably not our highest priority right now, but who knows what happens :)

    • @SlugiuesRex
      @SlugiuesRex 3 роки тому

      @@jfversluis I'm having a very similar problem: my text displays properly but the images are absolutely tiny. I can see them on the screen - but they are the size of a period above the text they accompany. Please do more content on this layout manager. It is certain to be the backbone of any future Xamarin project.

  • @heinzd5523
    @heinzd5523 Рік тому

    Hi Gerald. Great Video, exactly what I have been looking for) My Question might not specificly apply to this video however I'll ask anyway. How do I change the color of the pulldown tool bar (no sure if this is the correct terminology) on the very top of the Android screen?

    • @jfversluis
      @jfversluis  Рік тому

      Thanks! You mean this?
      ua-cam.com/video/dWj0PdImH10/v-deo.html

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

    Great nice feature,.. but I'm struggle with its is only supported with contentview only (if I'm not wrong), I can not handle the right way to implement MVVM Binding, etc.. because I want to separate viewmodel on each tab content view, and I can not use Page.

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

      I totally understand! Right now you would either have to have one view model for all the views in there _or_ you can set the BindingContext on each of those views to still separate it. A BindingContext is not specific to a page

  • @cliffshivkar9948
    @cliffshivkar9948 3 роки тому

    Great Video! What is the performance hit, with all the GUI happening?

    • @jfversluis
      @jfversluis  3 роки тому

      It’s up to you however you design it :) it’s all Xamarin.Forms components so not more or less than using those as usual

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

    Hi Gerald, I have a Shell app with FlyoutItems, there's a performance gain/loss between ContentTemplate of Flyout and ContentViews of TabView?

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

      Hi Antonio! Sorry reply took a while :) So what you're asking is if there is a difference in performance when using Shell with ContentTemplates or TabView with ContentViews?
      At this time I think you'll be better of with ContentTemplate and Shell. Those are lazy loaded I think, usually all templates are, while with the TabView they are not. :)

  • @menschmaier5764
    @menschmaier5764 3 роки тому

    Hello, thanks for the video, but i have one question:
    is it possible to put inside the tabViewItem a complete contentpage which then has it's own Viewmodel? so for example
    Thanks in advance!

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

    Thanks for another great video! With Shell, I can click on a tab and then tap into subsequent NavigationPages while still in the context of that tab. Is this possible with XCT TabView?

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

      Errr, not sure! With TabView you don't push pages in there though, you have to work with views in there. But not entirely sure on what you're looking for here, sorry :)
      And thank you so much for becoming a member!

  • @tempacc2833
    @tempacc2833 3 роки тому

    Good video. Can we use this Tabview like ViewPager? What I mean was there is static view at the top of the ContentPage, then after that the TabView which I want to swipe. Problem is it works on Android but not in iOS.

    • @jfversluis
      @jfversluis  3 роки тому

      I'm afraid I don't quite understand what you mean, sorry. Maybe for this scenario the CarouselView is a better fit? ua-cam.com/video/y0X15M_Acdc/v-deo.html

  • @ajramos27
    @ajramos27 3 роки тому

    Great video! Is there a way to change the position of the badges? In iOS they appear in the center of the tab and I'm not using icons only text

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

    I am using Tabs a lot lot in my Application. I hope that these Tabs also support IsEnabled and IsVisible for each Tab, that would be awesome ! I will definitely check it out !

    • @jfversluis
      @jfversluis  3 роки тому

      That would be great additions actually! I don’t think those are in there right now... make sure to see if there is an issue for it or open one!

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

      @@jfversluis Did isenabled per tab ever get implemented?

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

      Actually - they inherit from visualelement so they have isenabled already. Plus they are bindable!

  • @paolaruiz9106
    @paolaruiz9106 3 роки тому

    Beautiful explanation
    Congrats!!

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

    Is there a way to change the shown tab from code?

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

      I think you can set the selected or selected index property

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

      @@jfversluis I tried this. but it doenst update the UI. the page remains the same. I did however find the correct workaround:
      MethodInfo dynMethod = tabbedPageView.GetType().GetMethod("UpdateSelectedIndex", BindingFlags.NonPublic | BindingFlags.Instance);
      dynMethod?.Invoke(tabbedPageView, new object[] { 0, false });

  • @prayashff880
    @prayashff880 3 роки тому

    Awesome video man it helped me a lot !! Thanks buddy

    • @jfversluis
      @jfversluis  3 роки тому

      That is great! Thanks for letting me know!

  • @hungchip
    @hungchip 4 місяці тому

    Hi, Geralt, or Any People, XamarinToolkit 2.0.6, XamarinProject NetStandard 2.1, MVVM 8.2.2, How i can set x:Name of TabView or anny control of XamarinToolkit 2.0.6? Now, i get error when i set x:Name="AnythingString":
    Severity Code Description Project File Line Suppression State Details
    Error (active) : XamlC error XFC0000 : Cannot resolve type "TabViewItem".

  • @PumpdaBrakes-ub8kp
    @PumpdaBrakes-ub8kp 3 роки тому

    nice. would love to see tabs on top and bottom with icons on all tabs

    • @jfversluis
      @jfversluis  3 роки тому

      I think this video shows you how to achieve all of that!

  • @makatozi
    @makatozi 3 роки тому

    Nice work! Does the tab view always take up the entire page? Is it possible to have something else on the page, either above or below? What I'me trying to accomplish is a form with a map showing a location, and just below it is a section for entering the location. I want to give the user a choice of several different ways of specifying a location such as current, address, geo coordinates, etc. And then more content below the tab view such as Save and Cancel Buttons. It is this section that I am thinking of having as a TabView. Is this possible?

    • @jfversluis
      @jfversluis  3 роки тому

      Very good question actually! I think that should be possible, but not 100% sure, let me know ;)

    • @makatozi
      @makatozi 3 роки тому

      @@jfversluis Hi Gerald, yes it is possible . I had it within a StackLayout. Worked just as expected. Thanks!

    • @jfversluis
      @jfversluis  3 роки тому

      Awesome! Thanks for letting me know!

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

      @@makatozi Could yoyu please elaborate a little more? I tried putting tabview inside stacklayout and it shows nothing

  • @SigmuStube
    @SigmuStube 3 роки тому

    Thanks for the video! It was very helpful!

  • @madraven37
    @madraven37 3 роки тому

    No more hassle renderers..tnx team...

  • @Aliensfcul
    @Aliensfcul 3 роки тому

    As always, this is an amazing video.
    I am waiting for it to accept contentPages as content, so the Xaml can be cleaner and compact.
    I am, although, struggling in Android as the tabViewItem text is always uppercase. I added the textAllCaps property with value false, in styles.xml but the text is still upper case. Do you know if this is a known issue or if there is a workaround?

    • @jfversluis
      @jfversluis  3 роки тому

      For the uppercase, you can create your own template, have a look at this sample: github.com/xamarin/XamarinCommunityToolkit/blob/main/samples/XCT.Sample/Pages/Views/TabView/CustomTabsPage.xaml
      For the ContentPages, I wouldn't wait for it. It might take a while or not come at all. You can still have your views in separate XAML files too to clean up your XAML :)
      And thank you for the kind words!

  • @shakaibakhtar8764
    @shakaibakhtar8764 3 роки тому

    Hey Gerald! can you please tell me how to put a separate content page into a tabview item .... For example I have a Content Page named "SomeContentView" and I want to display this in a tabview item like this . Is it possible ? If yes then how ?

    • @jfversluis
      @jfversluis  3 роки тому

      You can't use pages in there right now unfortunately. You can however do the same syntax but then for a view :)

  • @tech-man8751
    @tech-man8751 2 роки тому

    hi Gerald, nice video. But TabView control is currently not available in MAUI toolkit.

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

      Correct, that still needs to be ported! Pull requests are accepted 😬

  • @LeeM0to
    @LeeM0to 3 роки тому

    Another great video Gerald 👍.
    I've been experimenting with using TabView as using Shell with Tabs I found some limitations. On experimenting with the TabView I think I have found another limitation. I see a flicker when moving from a TabViewItem containing a XF Map to any other TabView. It is fine moving from a tab to the tab containing the XF Map. Only happens when "IsSwipeEnabled" and "IsTabTransitionEnabled" are False. Is this perhaps a bug? Or does anyone know how to work around it. I seem to becoming stuck at every road I venture down with XF lately ☹

    • @jfversluis
      @jfversluis  3 роки тому

      Thanks Lee! Hope you already found something for this. If not make sure to see if there is already an issue for it or open one so we can have a look :)

  • @vugikarabagli6748
    @vugikarabagli6748 3 роки тому

    Is there a way to navigate to another pages inside the tabview ? We already know TabView items accepts only views, but whenever we navigate to another page we need to show the tab control in the bottom of the page for few screens/pages .

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

      Did you find a solution for this? I've been scouring all options for this in Xamarin.

  • @jaredr91
    @jaredr91 3 роки тому

    Hey Gerald,
    How do I access this view component from the code behind? If I try the good old x:Name="tabView"...
    I get this error: : XamlC error XFC0000 : Cannot resolve type "TabView"
    Thanks in advance!

    • @jfversluis
      @jfversluis  3 роки тому

      Hm that's weird that should just work. For instance here in the sample app we do that: github.com/xamarin/XamarinCommunityToolkit/blob/main/samples/XCT.Sample/Pages/Views/TabView/TabPlacementPage.xaml#L17
      Make sure that you have the same version of the Toolkit on all of your projects and you do a good old rebuild :)

  • @sylendrababujr9449
    @sylendrababujr9449 3 роки тому

    I have the tab strip. On clicking on center tab item I want to navigate to the tabview item related to the center tab and need to update that center tab item image with the rounded plus image. (Rounded plus image will open the camera or gallery). How we can do this using the TabView

    • @jfversluis
      @jfversluis  3 роки тому

      Thanks for being patient while I go through all replies 😅
      Hope you figured something out for this by now!

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

    Does it support lazy loading? I mean if we have 4 tabs and when we launch the application does it load only the first page and other pages on navigating?

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

      Not right now, there is an open issue for it. Please add your like so we can see how many people are interested: github.com/xamarin/XamarinCommunityToolkit/issues/637

    • @_samirdahal
      @_samirdahal 3 роки тому

      @@jfversluis Sure :)

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

    Tabs should be able to be templated this would give you so much more scope for customising everything. But gonna use this tonight...

    • @jfversluis
      @jfversluis  3 роки тому

      Hope it worked out for you while trying this :) Make sure that the template idea is up on the repository so we can keep track of it!

  • @marin145ts
    @marin145ts 3 роки тому

    Hy Gerald, i have xct tabView in my app and it's cool, but how can i hide my first tab and content inside it based on database and Binding value? IsVisible property hides tab and content but two other tabs stays at the same position.

    • @jfversluis
      @jfversluis  3 роки тому

      Hi Marin! Did you figure it out yet? That might be a scenario that is not supported yet, please see if there is an issue for it on the repo or else open one so we can see what we can do :)

    • @marin145ts
      @marin145ts 3 роки тому

      @@jfversluis Hi, in shorts solved but with two instance of tabview, one has 2 tabs, and another have 3 tabs, and both tabViews have IsVisible on the same property...i will open issue on your repo. :)

  • @vugarkarabagli1126
    @vugarkarabagli1126 3 роки тому

    Hi Gerald, thanks for the video. But x:name for me doesn't works. I have this error: XamlC error XFC0000 : Cannot resolve type "TabView" . And if i write SelectedIndex in xaml, i get the error

    • @jfversluis
      @jfversluis  3 роки тому

      This is a known error in the tooling. You should be able to build and run the application just fine

  • @motorparadise
    @motorparadise 3 роки тому

    how to navigate to specific tab index in tabbed page from another (standalone) separate page and can you please make a video about data binding.

    • @jfversluis
      @jfversluis  3 роки тому

      There are already multiple videos on databinding ua-cam.com/play/PLfbOp004UaYWOuVUuEtGlpkDIC1houhn_.html

    • @motorparadise
      @motorparadise 3 роки тому

      @@jfversluis Thank You!

  • @MuhammadNadeem-wj6xd
    @MuhammadNadeem-wj6xd 2 роки тому

    what about if i want to navigate on a page there i have tabview and I want to land on this page with 2nd tab selected on android it's working fine but on iOS it's still on 1st tab.

  • @makatozi
    @makatozi 3 роки тому

    The TabView Text is always in CAPS/UPPERCASE on Android. Do you know if this is by design? Is there any way to change it?

    • @jfversluis
      @jfversluis  3 роки тому

      This is by design, it’s the same as Android does it and you can change it. Have a look at the samples app in the repo :)

  • @MuhammadNadeem-wj6xd
    @MuhammadNadeem-wj6xd 2 роки тому

    Hi @Gerald
    can we do icons at left side and tab title at right side in tabview. Please guide.

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

      Have a look at this example: github.com/xamarin/XamarinCommunityToolkit/blob/main/samples/XCT.Sample/Pages/Views/TabView/CustomTabsPage.xaml
      This uses a custom template to style the tabs. Then you can layout the tabs any way you want, including the layout you asked for :)

    • @MuhammadNadeem-wj6xd
      @MuhammadNadeem-wj6xd 2 роки тому

      @@jfversluis let me check

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

    You're a really great person. I am from Egypt but I live in Saudi Arabia I hope to participate live to know that I designed a program that changed my life and thanks to God and then you You now have an audience of Arabs I wish you success in your life I hope to communicate with you and that is to thank you only

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

      Thank you so much! I love reaching other communities that I don't know much about :) Do you know Ali Shahin's channel? I have done a couple of videos with him as well.

  • @ross-kennedy
    @ross-kennedy 2 роки тому

    Setting the app to dark mode on iOS seems to crash xct:TabView, works on Android, works on light mode iOS, Any Ideas? Even adding a single empty tag crashes the app on iOS dark mode.

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

    1. Can we customise tab view - "more" with dropdown / popup menu / other customable Absolute / Frame / Stack layout?
    2. how do we add custom renderer into tabview in example i need to add button behavior under tab view element instead of tabview item?


    whereas "xct:TabButton" don;t have any tab content but it wlll display custom Frame we are created outside TabView container as an overlay layout infront of the current selected tab view (i.e the selected tab - currently at tab2).

    • @jfversluis
      @jfversluis  3 роки тому

      1. Absolutely, you will just mimic that behavior, create a tab with a title called "more" and put a list in there with other pages :)
      2. I'm not sure what you're trying to do here :)

    • @sunker76
      @sunker76 3 роки тому

      @@jfversluis Thanks for the feedback, Legend!. for number 2 i would like to create an overlay popup display as an sub-tab menu above the TABVIEW when the user clicks on the MORE tab item. I already found the solution for it.
      btw I have an issue with Xamarin Community toolkit: element

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

    Is it possible to add a shadow effekt to the tabbar?

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

    Hi, Is it still not implemented with Shell (TabBar) ?

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

    Hello Gerald, how are you? I need help in xamarin forms for a project I am making. Can I take an online course with you? Please communicate me the price. Thanks!

    • @jfversluis
      @jfversluis  3 роки тому

      I appreciate you asking me, unfortunately I’m not in the position nor have the time to do that :(

    • @philippedoumet6073
      @philippedoumet6073 3 роки тому

      @@jfversluis it's okay😕🙂

    • @jfversluis
      @jfversluis  3 роки тому

      Sorry about that! Always happy to answer some question!

    • @philippedoumet6073
      @philippedoumet6073 3 роки тому

      @@jfversluis 😁👍 do you know someone who can help me?

    • @jfversluis
      @jfversluis  3 роки тому

      @@philippedoumet6073 what do you want to learn?

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

    Adding a collection view inside Tabview and scrolling it without accidentally changing tabs is hard which makes tabview not usable on Android. I believe that it's a xamarin forms carousel view issue. Have you tried it ?

    • @jfversluis
      @jfversluis  3 роки тому

      I have not tried it! But I think there is an issue for that, so we should definitely look into that. Probable the different scrollable elements that are conflicting.

  • @hassanesilverlight1550
    @hassanesilverlight1550 Рік тому

    Hi Gerald, I have a tabdedpage with two collectionviews in each tab , in Android emulator everthing works well, but in ios emulator one collectionview in tab2 is not showing data . do have any idea why ? please.

    • @jfversluis
      @jfversluis  Рік тому +1

      Not with just this information, sorry!

    • @hassanesilverlight1550
      @hassanesilverlight1550 Рік тому +1

      @@jfversluis Thanks for your relay . think that was a bug in xctoolkit tabview. I switch to regular xamarin forms tabbedpage it worked. thanks again.

  • @khoikha9539
    @khoikha9539 3 роки тому

    with this control, can we implement an unlimited item view pager depending on the data source? (it's like the main launcher of Android 4)

    • @jfversluis
      @jfversluis  3 роки тому

      I guess technically you could, but not sure it unlimited tab pages is something you'd want :D

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

    Hey Gerald, is it possible to set the icon sizes

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

      Not with the default I think. But you can create any layout by implementing a custom template

  • @yandersonkaio6451
    @yandersonkaio6451 11 місяців тому

    Is it possible to pass an external view to the content of a tab view?

    • @jfversluis
      @jfversluis  11 місяців тому

      What do you mean by external view?

  • @nessitro
    @nessitro 3 роки тому

    Neat! Thanks!

    • @jfversluis
      @jfversluis  3 роки тому

      It is my absolute pleasure! Glad you liked it!

  • @akshayjain3197
    @akshayjain3197 3 роки тому

    Is it possible to have some icons and some animation in tabview?

  • @SalehWolf
    @SalehWolf 3 роки тому

    Hello Thank u For ur videos please teach how to use layoutState xamarin forms toolkit

  • @AMIRKHAN-dm2fm
    @AMIRKHAN-dm2fm 3 роки тому

    Great Thanks😍

    • @jfversluis
      @jfversluis  3 роки тому

      Let me know what you think!

    • @AMIRKHAN-dm2fm
      @AMIRKHAN-dm2fm 3 роки тому

      @@jfversluis fantastic great i have no words XCT is amazing😍😍😍

    • @AMIRKHAN-dm2fm
      @AMIRKHAN-dm2fm 3 роки тому +1

      @@jfversluis I think you should upload XCT sample app on playstore for quick review the complete lib.
      it really helpful😍

    • @jfversluis
      @jfversluis  3 роки тому

      We want to, unfortunately it’s not that easy :(

  • @robertojrcantos1711
    @robertojrcantos1711 3 роки тому

    Is XCT Tab View can render a ShellPage per Tab?

    • @jfversluis
      @jfversluis  3 роки тому

      Unfortunately not, just views for now

    • @robertojrcantos1711
      @robertojrcantos1711 3 роки тому

      @@jfversluis 😮 it’s much nicer if XCT Tab View has the capability to render ShellPage. We will for it and hoping it will not take so long.

  • @alfonsomoreno3748
    @alfonsomoreno3748 3 роки тому

    Can you have a TabView inside a TabViewItem ?

    • @jfversluis
      @jfversluis  3 роки тому

      I think there is a way to nest them yes. Check out the sample in the repo on aka.ms/xct

  • @shayan.650i
    @shayan.650i 3 роки тому +1

    how do i Connect MyPage to TabView ?

    • @jfversluis
      @jfversluis  3 роки тому

      What do you mean with MyPage?

    • @shayan.650i
      @shayan.650i 3 роки тому

      @@jfversluis how can i add children for example AboutPage to tab 1 and ContactPage to Tab2 ?

    • @jfversluis
      @jfversluis  3 роки тому

      @@shayan.650i as mentioned: you can’t use pages right now. You need to use the content of those pages as the content of your tabs

  • @eliasrodriguesdemedeirosju3144
    @eliasrodriguesdemedeirosju3144 3 роки тому

    Great 👍🏼

    • @jfversluis
      @jfversluis  3 роки тому

      Isn’t it?! And there is so much more I didn’t even talk about!

  • @zerovchile
    @zerovchile 3 роки тому

    TabStripPlacement not available on TabView

    • @zerovchile
      @zerovchile 3 роки тому

      (on OSX at least)

    • @jfversluis
      @jfversluis  3 роки тому

      Please see if there’s an issue for it on the repo and if not open one so we can track it

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

    Finally ❤️

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

    please make xct markup tutorial

    • @jfversluis
      @jfversluis  3 роки тому

      I’ll think about it! I’m not a big user of it myself to be honest :) but you can check out the docs here: aka.ms/xtc-docs

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

    Still waiting for your cross device widget implementation tutorial.

    • @jfversluis
      @jfversluis  3 роки тому

      I don’t think I will get to this anytime soon, sorry

    • @hintsoftware
      @hintsoftware 3 роки тому

      @@jfversluis dear sir, there is no such tutorial in UA-cam and everyone need to know how to deal with widgets in xamarin... So it will be very promoting as well as helpful. Kindly arrange to make a complete video on this... Please sir...

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

      I’m not a big user of widgets myself, and therefore I don’t have very much interest in them or used them. I understand you need it. I have it on my list, but that list is very long with other things that also don’t have tutorials on UA-cam and I will probably do those first. I don’t make fulltime videos, this is something I do in my spare time and I love doing it, but that also means I have to make choices. I hope you understand!

  • @r.gopalakrishnan6926
    @r.gopalakrishnan6926 3 роки тому

    Nice

  • @shayan.650i
    @shayan.650i 3 роки тому

    Great ❤

    • @jfversluis
      @jfversluis  3 роки тому

      TabView is going to be awesome for developers!

  • @drtj2066Tube
    @drtj2066Tube 3 роки тому

    why doesn't it support Xamarin Forms 4.0?

    • @jfversluis
      @jfversluis  3 роки тому

      For certain things to work correctly changes that are only available in Xamarin.Forms 5 is needed. I think the question should be: why can’t you update to 5 😉

    • @drtj2066Tube
      @drtj2066Tube 3 роки тому

      @@jfversluis for the same problem
      There are some packages in my project that are incompatible with xamarin 5

    • @drtj2066Tube
      @drtj2066Tube 3 роки тому

      @@jfversluis but I agree, I have to update/replace those packages

    • @jfversluis
      @jfversluis  3 роки тому

      Which ones are those?

  • @leinah3671
    @leinah3671 3 роки тому

    everything is fine but the icons doesn't work for me

    • @jfversluis
      @jfversluis  3 роки тому

      They don’t show at all? If you use it in another place?

    • @leinah3671
      @leinah3671 3 роки тому

      @@jfversluis It's showing now, I only adjust the text font size

    • @ranajitkoley9427
      @ranajitkoley9427 3 роки тому

      @@jfversluis For me it is showing but the size is very small, font size is not working for me. Sent you a screenshot in DM in twitter. If you please reply, that would be of great help.

  • @robbyhermansyah4276
    @robbyhermansyah4276 3 роки тому

    i think it doesnt work in ios, the tab show, but the content doesnt show

    • @jfversluis
      @jfversluis  3 роки тому

      If you think that’s the case, please open an issue on the repository with a reproduction

  • @realcolormusic
    @realcolormusic 3 роки тому

    Very cool. Thank you very much. :-)
    I did your barcode scanner tutorial before, and tried to combine it with this tutorial. I put the "ZXingScannerView" inside the tabbed "StackLayout".
    Unfortunatly, I get after the camera permission acception the error "Java.Lang.NullPointerException: 'Attempt to invoke virtual method 'boolean android.content.Context.isUiContext()' on a null object reference'"
    Do you maybe know how I can fix that error?
    EDIT: If I comment out the "ZXingScannerView" the tab app did work without an issue. I also tried it with the latest 3.1.0 beta 2 ZXing.
    EDIT2: I just verified that it only happens if I put the ZXing inside the "TabViewItem.Content". Both work on their own, but not combined.

  • @user-fp3vc1mc5i
    @user-fp3vc1mc5i 3 роки тому

    Great..

  • @AmanKumar-bi4jl
    @AmanKumar-bi4jl 3 роки тому

    Can i make it floating

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

      With the right design skills you can make it appear floating, absolutely

    • @AmanKumar-bi4jl
      @AmanKumar-bi4jl 3 роки тому

      @@jfversluis can you make a video or any website for me

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

      @@AmanKumar-bi4jl I’m not a great designer, sorry 😅