Пікірлер
@peerate7848
@peerate7848 Ай бұрын
Excellent travail. Merci
@CodingHubYtb
@CodingHubYtb Ай бұрын
Mais de rien
@peerate7848
@peerate7848 Ай бұрын
Bravo mon ex padawan :)
@CodingHubYtb
@CodingHubYtb Ай бұрын
😂😂😂merci
@fernandogoncalves1891
@fernandogoncalves1891 2 ай бұрын
Hi . Is there a way to have flyout and only one option show two options on Tabbar?
@jdavidson4018
@jdavidson4018 2 ай бұрын
I need something more basic for existing Xamarin app, preferably with voice-over not music
@eelam_hiphops
@eelam_hiphops 6 ай бұрын
do more tutorials
@kirillnovozhilov7046
@kirillnovozhilov7046 9 ай бұрын
Why you dont show the actual result of what u have did? On different platfroms the tabbar is top or bottom. Where do you show how you force it to be bottom or top on any platform?
@CodingHubYtb
@CodingHubYtb 9 ай бұрын
In the video, I'm only showing the result on mobile. On platforms such as desktop applications, the tabbar is positioned at the top. Maui doesn't manage this. On Xamarin.Forms, you could use tabviews to manage these different cases. It is not currently available on Maui.
@SyedTassaduq
@SyedTassaduq 10 ай бұрын
Icons are tinted how do I set colored png in the bottom bar?
@CodingHubYtb
@CodingHubYtb 10 ай бұрын
Hello, in the file Resources/Styles/Style.xaml
@willansell2646
@willansell2646 10 ай бұрын
Great, but how do I actually get the NavBar to show on the views created?
@eyluulali
@eyluulali 11 ай бұрын
Hello can you reply
@CodingHubYtb
@CodingHubYtb 11 ай бұрын
Yes
@enriqueleon4806
@enriqueleon4806 Жыл бұрын
how to separate tabbar in only one page?
@CodingHubYtb
@CodingHubYtb Жыл бұрын
I didn't understand your question
@mraak324
@mraak324 Жыл бұрын
<FlyoutItem FlyoutDisplayOptions="AsSingleItem"> when set this property application is not crash
@mraak324
@mraak324 Жыл бұрын
<FlyoutItem FlyoutDisplayOptions="AsMultipleItems"> when set this property application is crash
@CodingHubYtb
@CodingHubYtb Жыл бұрын
This means there's a problem with the items. Do you have the correct item icons? If you find the bug, please let me know. I'm trying on my side to see where the bug might come from.
@mraak324
@mraak324 Жыл бұрын
application is crash when apk open in mobile without debuging
@CodingHubYtb
@CodingHubYtb Жыл бұрын
please tell me which device you have ans which version
@blancatrujillohigueras9865
@blancatrujillohigueras9865 11 ай бұрын
SAMNSUNG TAB S7 @@CodingHubYtb
@realidadecapenga9163
@realidadecapenga9163 5 ай бұрын
For those encountering a similar issue, it is likely caused by the XAML compiler. The behavior of XAML compilation differs depending on whether you are debugging or running the application normally. The debugger tends to be more lenient and may not crash if there is a missing style or asset, which could lead to discrepancies in behavior between debug and release modes. (translated by ChatGPT)
@arsalanasif5105
@arsalanasif5105 Жыл бұрын
I need a full video
@DeepWorksStudios
@DeepWorksStudios Жыл бұрын
Thank you for sharing this project with the community. Youre awsome Keep it up!
@CodingHubYtb
@CodingHubYtb Жыл бұрын
Thank you for your comment and thank you to the community.
@minhvan2265
@minhvan2265 Жыл бұрын
Hi, have you try to run your code on Windows? The tab always be placed on top. I'm looking around if some one could solve this issue. Thanks.
@CodingHubYtb
@CodingHubYtb Жыл бұрын
I'll get back to you if I have any news about this problem. If you don't hear from me, I haven't found the solution yet.
@netrixtechie
@netrixtechie Жыл бұрын
This is great, thanks
@mk-ep7yk
@mk-ep7yk Жыл бұрын
wonderfull ☺👏
@CodingHubYtb
@CodingHubYtb Жыл бұрын
Thank you! 😊
@mk-ep7yk
@mk-ep7yk Жыл бұрын
@@CodingHubYtb 🙏🙏🤗🤗☺☺
@montassarmeddeb6979
@montassarmeddeb6979 Жыл бұрын
Thanx Bro it's very helpful
@marvinxulu7816
@marvinxulu7816 Жыл бұрын
More
@CodingHubYtb
@CodingHubYtb Жыл бұрын
Yes
@anasabubakar4125
@anasabubakar4125 Жыл бұрын
Good job bro. You Xamarin tutorials are beyond simple apps
@CodingHubYtb
@CodingHubYtb Жыл бұрын
Thank you my friend. Do you prefer tutorial videos on xamarin or maui or both?
@mandardesai3841
@mandardesai3841 Жыл бұрын
please do more video on ui in maui Thank You.
@maybe3392
@maybe3392 Жыл бұрын
VS2019 can't use this for whatever reason. All the packages are broken, and I can't repair it. You know it's bad when it doesn't recognize System.String.
@CodingHubYtb
@CodingHubYtb Жыл бұрын
I use a .gitignore for this github project. That's why you only have access to the code without being able to compile. I heard your remark and I will put the whole project with the possibility to compile tonight. Thanks for your patience.
@BreakingSkiesMedia
@BreakingSkiesMedia 2 жыл бұрын
thank you! but there is a issue with your code: change if (result.ContentType == "image/png" || result.ContentType == "image/jpeg" || result.ContentType == "image/jpg") return result; TO if (result.ContentType == "png" || result.ContentType == "jpeg" || result.ContentType == "jpg") return result;
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
With this change, does it work?
@BreakingSkiesMedia
@BreakingSkiesMedia 2 жыл бұрын
@@CodingHubYtb yes!
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Thank you. I will pin your comment
@brucelee14
@brucelee14 2 жыл бұрын
⭐️⭐️⭐️⭐️⭐️
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Thanks 😂
@leonardgame781
@leonardgame781 2 жыл бұрын
⭐️⭐️⭐️⭐️⭐️
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Thanks
@williamprogramer4168
@williamprogramer4168 2 жыл бұрын
⭐⭐⭐⭐⭐
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Thanks
@osamamusaed6966
@osamamusaed6966 2 жыл бұрын
Very amazing
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Thank you my friend
@koryguilfoyle6198
@koryguilfoyle6198 2 жыл бұрын
𝓅𝓇𝑜𝓂𝑜𝓈𝓂
@bobbville
@bobbville 2 жыл бұрын
🔥🔥🔥
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
hi why i cant access mafreebox?
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
For my part, my box is called the freebox. If you have a different box, you have to go to the website of your box. Which network are you on?
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
@@CodingHubYtb globe at home and do i need port forwarding
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Since your network box has a public ip, a redirection is necessary for outsiders to communicate with you on the server
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
@@CodingHubYtb i dont understand
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
To put it simply. Your internet box has a public IP where everyone can access it. Port forwarding allows you to redirect the public IP of your internet box to the local IP of the server via the redirection port. This means that if I reach the server with the public IP of your internet box and with the redirection port, I reach your server even if it is thousands of kilometres away.
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
Is this the tutorial
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Yes, this is the tutorial. In the second part of the video, there is an example with my chat message
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
@@CodingHubYtb thank you sooo muchh
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
You're welcome 😁
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
Still waiting for the tutorial
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
The next video will be the tutorial 😁
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
The tutorial will be this week's Friday
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
Not connecting
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
It's two different devices on the same network.
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
@@CodingHubYtb yes it doesn't work
@selfishgaming2928
@selfishgaming2928 2 жыл бұрын
@@CodingHubYtb e tried connecting mobile to pc
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Did you get the server ip and port?
@CodingHubYtb
@CodingHubYtb 2 жыл бұрын
Maybe the computer is using the ports. -Verifies that the devices are on the same network -Use different ports if that doesn't work -If that doesn't work, try changing networks to see a difference
@brucelee14
@brucelee14 3 жыл бұрын
Intro outro rien à dire
@CodingHubYtb
@CodingHubYtb 3 жыл бұрын
Lintro j'vais l'enlever je pense
@habiblawani3720
@habiblawani3720 3 жыл бұрын
c'est lourd
@leonardgame781
@leonardgame781 3 жыл бұрын
Gg