Daniel Hindrikes

Daniel Hindrikes

Daniel Hindrikes is a developer and architect focusing on mobile- and cloud solutions using .NET and Azure. On this channel, the main focus is app development with .NET MAUI, but also .NET in general.

How Blazor saved my day!

How Blazor saved my day!

Пікірлер

  • @first8208
    @first820830 минут бұрын

    Glorious! : D

  • @thefrieber_362
    @thefrieber_362Күн бұрын

    Thanks

  • @demarcorr
    @demarcorr3 күн бұрын

    Is that Load method called automagically or do you need to call it else where? Seems really cool otherwise, taking care of all that boilerplate

  • @DanielHindrikes
    @DanielHindrikes3 күн бұрын

    You need to call it. But if you combine it with my library TinyMvvm. Things like that si handled for you. github.com/dhindrik/TinyMvvm

  • @Heneyspanicker
    @Heneyspanicker5 күн бұрын

    Please tidy up the code as you go . It make easier for beginners to follow

  • @first8208
    @first82088 күн бұрын

    great work! do we need to set permissions on android to save to files?

  • @NoFeetOnEarth
    @NoFeetOnEarth13 күн бұрын

    Is there an easy way to save and encrypt a somewhat large JSON file?

  • @matanyamin1
    @matanyamin115 күн бұрын

    Thanks for the video! By the way, can we use HotReload on VSC for Mac? I managed to use it only on a simulator, not with the editor like in Android Studio or Xcode.

  • @wimdevriendt2346
    @wimdevriendt234618 күн бұрын

    Hi ,nice stuff can we have a link to the repo ?

  • @DanielHindrikes
    @DanielHindrikes18 күн бұрын

    github.com/Hindrikes-KZread/ActivityTracker

  • @first8208
    @first820822 күн бұрын

    Good one

  • @anonimoanonimo3393
    @anonimoanonimo339324 күн бұрын

    Hello Daniel, Thanks for your videos, they are very interesting. One question... If the application crashes unexpectedly, is the exception caught?

  • @DanielHindrikes
    @DanielHindrikes22 күн бұрын

    As long it is a .net crash. Low level/native crashes is not supported right now. As it is now it will send the crash report next time the user starts the app after a crash.

  • @first8208
    @first820824 күн бұрын

    liked and subsicribed

  • @ericritter46
    @ericritter4629 күн бұрын

    Thank you so much for this. I am diving into maui and blazor. I was wondering how to make this connection between app and web app.😊

  • @sergejjarosch
    @sergejjaroschАй бұрын

    Thanks for showing it, I was very interested to see how well Visual Studio would run on the Mac with Parallels. Thank you

  • @Evolyzer
    @EvolyzerАй бұрын

    Thanks, this video really really helped me!

  • @user-ih8vg6ww4u
    @user-ih8vg6ww4uАй бұрын

    thank you

  • @sarthakchauhan4163
    @sarthakchauhan4163Ай бұрын

    Amazing I love it

  • @DanielHindrikes
    @DanielHindrikesАй бұрын

    Thank you! 😀

  • @bartvanhoey2663
    @bartvanhoey2663Ай бұрын

    Hi Daniel, I am happy you are back!

  • @DanielHindrikes
    @DanielHindrikesАй бұрын

    Thank you :D

  • @spytromics
    @spytromicsАй бұрын

    Wow. This is spectacular. The stuff that you do is really cool.

  • @DanielHindrikes
    @DanielHindrikesАй бұрын

    Thank you so much 😀

  • @zqzhang-ni8nr
    @zqzhang-ni8nrАй бұрын

    If I have lots of columns and need to have a horizontal scrolling bar, how to handle it

  • @zqzhang-ni8nr
    @zqzhang-ni8nrАй бұрын

    If I have lots of columns and need to have a horizontal scrolling bar, how to handle it

  • @communism8037
    @communism8037Ай бұрын

    What about another path to save files? I cant reach it

  • @michaeltagmose4993
    @michaeltagmose4993Ай бұрын

    Hi, and thanks for the insights... You want examples of solutions hard to achieve. I have one. I have a number of views, and it depends on the user how many I want to add to the Shell. So I populate the Shell dynamically in C#. Along with the views, I would like to show a status bar at the bottom. The same status bar for all views, and essentially a part of the Shell main window. Comparable with the Flyout meny. Then I would also like to bind to the whole thing instead of pushing to the Shell. This seems to be very hard to achieve. Maybe Shell.FlyoutContentTemplate is the key. Right now I have no clue...

  • @KAnt-mi1lc
    @KAnt-mi1lcАй бұрын

    Thanks. Helpfull

  • @ayisthiya740
    @ayisthiya740Ай бұрын

    Hi video is amazing, I like to know how to fill full image as a background can you please explain me

  • @ShilpaYaramala
    @ShilpaYaramala2 ай бұрын

    Thank You. Your video solved my issue.

  • @nickeax
    @nickeax2 ай бұрын

    Thanks!

  • @DanielHindrikes
    @DanielHindrikes2 ай бұрын

    Thank you!

  • @eelam_hiphops
    @eelam_hiphops2 ай бұрын

    how to implement sub menu expandable

  • @ricsharkbrazil
    @ricsharkbrazil2 ай бұрын

    Is xCode a prerequisite to use VSCode for .NET MAUI on a Mac ?

  • @DanielHindrikes
    @DanielHindrikes2 ай бұрын

    If you want to target iOS and/or Mac catalyst you also need xcode.

  • @ricsharkbrazil
    @ricsharkbrazil2 ай бұрын

    @@DanielHindrikes Thanks for clarifying

  • @ricsharkbrazil
    @ricsharkbrazil2 ай бұрын

    Nice explanation! Congrats!

  • @lemonlearner7315
    @lemonlearner73152 ай бұрын

    Mr daniel, could you please show us how to implement this using mvvm? thanks in advance

  • @BandieraRossa87
    @BandieraRossa872 ай бұрын

    I really like the fact that you created a sepatare class (SearchBenchmark) to avoid cluttering SearchService.cs with [Benchmark] attributes. But assuming SearchService.cs had some further dependencies, e.g. some interfaces to some services, repositories or whatever: how would you be able to inject these dependencies when you create SearchService-Instance in the SearchBenchmark class? I tried to use .NET Core's dependency injection but it looks as if it doesn't work when using BenchmarkDotNet.

  • @toyokenstudio
    @toyokenstudio2 ай бұрын

    Really cool project! Thanks 😊

  • @whateverrwhateveridou3548
    @whateverrwhateveridou35482 ай бұрын

    Can you give some information about Linux please?

  • @DINESHKUMAR-pk4kv
    @DINESHKUMAR-pk4kv2 ай бұрын

    How to multiple permission set and get securedstorage

  • @TheDomLouis
    @TheDomLouis3 ай бұрын

    I assume you can use the Maui VsCode plugin to debug normal Xamarin (not Maui), iOS apps to??

  • @DanielHindrikes
    @DanielHindrikes3 ай бұрын

    I don't think the debugger has support for it. But for Xamarin and pre .NET 8 you can continue to use VS4MAC

  • @netdeveloper740
    @netdeveloper7403 ай бұрын

    rider norm IDE, but I wait vscode + maui extension

  • @GuildOfCalamity
    @GuildOfCalamity3 ай бұрын

    Getting hungry for part 3

  • @DanielHindrikes
    @DanielHindrikes3 ай бұрын

    Working on. Been a bit busy 🙁

  • @GuildOfCalamity
    @GuildOfCalamity2 ай бұрын

    @@DanielHindrikes Any update on part 3?

  • @muhittinkeser
    @muhittinkeser3 ай бұрын

    what is this ??

  • @DanielHindrikes
    @DanielHindrikes3 ай бұрын

    An old video that is not that relevant anymore.

  • @user-bz5tt4mr1f
    @user-bz5tt4mr1f4 ай бұрын

    can we change the position from the icon to the right corner?

  • @DanielHindrikes
    @DanielHindrikes3 ай бұрын

    I don't think so. If you mean the icon to open the Flyout.

  • @barryalimou4943
    @barryalimou49434 ай бұрын

    Thanks ❤❤ from Guinea I like your Tito

  • @csegoepik800
    @csegoepik8004 ай бұрын

    I'm switching from WPF to blazor hybrid and had a hard time figuring out where to even start with all these new components and stuff I haven't seen before but this video was really helpful to get a view how the architecture builds up. I truly appreciate it and will check out the other videos from you for sure

  • @alexandervaldes7606
    @alexandervaldes76064 ай бұрын

    How I can display the data into a List view

  • @okachobe1
    @okachobe14 ай бұрын

    you move on to the next video :D but if you ask chat gpt 3.5 or claude or gemini i bet it will give you some decent examples, it should be something simple like where you pull your list from the database and then you bind the list to the front end

  • @therealamtdev
    @therealamtdev4 ай бұрын

    what entitlements are needed to store your sqlite db in the app data folder in an apple store iOS distribution? my app runs as expected when run in debug mode on ipad and maccatalyst but crashes when I publish to store. I can see that no db is created which causes the crash.

  • @DanielHindrikes
    @DanielHindrikes4 ай бұрын

    You should not need any. Maybe a linker issue?

  • @therealamtdev
    @therealamtdev4 ай бұрын

    Not sure but I published it in debug mode and it works as expected...hmm@@DanielHindrikes

  • @YarnellCrew
    @YarnellCrew4 ай бұрын

    I went through this and did everything step by step but I am having one issue. In my AppShell.xaml file I am getting an error for the ContentTemplate="{DataTemplate root:MainPage}" It says Invalid Xaml "root:MainPage" and then it gives another couple of lines saying The namespace prefix "root" is not defined And MainPage is not supported in a MAUI project. Not really sure how to go about fixing this.

  • @DanielHindrikes
    @DanielHindrikes4 ай бұрын

    Do you have imported the namespace? xmlns:root="clr-namespace:ActivityTrackerApp" If you become a gold member of my channel you will get access to all the source I write for the channel.

  • @YarnellCrew
    @YarnellCrew4 ай бұрын

    @@DanielHindrikes Thank you so much, that was the issue. I will take a look at the membership and see if I can swing it. Thanks again I really appreciate it. On to video 2.

  • @bartvanhoey2663
    @bartvanhoey26634 ай бұрын

    ContentPage in SearchHandler.ItemTemplate throwed an UnHandledException. Replacing ContentPage with Grid solved the issue

  • @MrBigdogtim69
    @MrBigdogtim694 ай бұрын

    Great project for sample app of Blazor Hybrid. Thanks for doing this - and yes, I did subscribe!

  • @DanielHindrikes
    @DanielHindrikes4 ай бұрын

    Thank you! 😀

  • @cissemy
    @cissemy4 ай бұрын

    Thanks Are you using parallels on mac with m3 or intel ?

  • @DanielHindrikes
    @DanielHindrikes4 ай бұрын

    I have an old m1 but it works great.

  • @cissemy
    @cissemy4 ай бұрын

    Thanks no issue with visual studio and sql server ms ?

  • @DanielHindrikes
    @DanielHindrikes4 ай бұрын

    No but I haven't tried witg sql server.

  • @rconn5641
    @rconn56414 ай бұрын

    Hi Daniel - I appreciate all your content. I also have a MBP M1 with 16gb RAM. I tried UTM for Mac with Windows 11 and VS 2022. The performance was horrendous. Have you noticed good performance using Parallels 19? Especially when running the iOS emulators and .Net MAUI? Thank you sir.