Thanks for sharing! I love a good vid on a library because it gives me ideas for features I can add to my apps that I'll never have time to fully implement 🤣
@@jfversluis Oh, the little demo app i've been working on on my channel has been a basic 'grocery list' app with some features built in, and thinking about barcodes, i bet there is probably an API out there I could use to maybe scan codes at the store to add into the list itself, or maybe do nutritional label lookups (if for some reason it's not on the item? lol now that I'm thinking about it, not sure about that one). Who knows! Half the fun is the brainstorming process, but also that's where I tend to get into trouble with my time management lol
@@ProgrammingWithChris Haha I definitely know that problem! There are some amazing APIs out there to make that happen for sure, let me know when you need anything!
Awesome. I am happy to have subscribed for the advantage packages of your UA-cam channel. Can I ask you a little question ? What is the state of .NET MAUI (PRODUCTION ready, or RC) ? Is there publication on that ? This is important for my managers. Thank you.
There is no agenda, .NET MAUI is deemed to be production ready. It’s very subjective. Some people like to hold of a bit longer waiting for it to mature, others have already apps published in the store. The only one who can decide if you think it’s ready for your needs is you.
@@jfversluis Many thanks. You are right in saying that I am the only one (and my company) who can decide if the current RC fits our needs. And as I have understood, there will be minor updates, but no significant evolutions where we will have to redesign your apps, so this is reassuring. Personaly, the goal of MAUI is really more than useful for developer community, but sometimes, as you know for sure, you must reassure your managers and customers. Some big applications built with MAUI and published on the stores, should give confidence. If you know some of them, I could use them to show what we can acheive with .NET MAUI. Thx.
Thank you for this, I was able to get this working in my app to scan QR codes. Is there a way to hide the CameraBarcodeReaderView once the scanning is complete. None of the obvious things seem to work: IsVisible or IsEnabled = False?
Hi Gerald, How would I implement this generator in a .NET Blazor Maui Blazor app? I'd like to implement this on a razor page and not via xaml. Thank you.
Hey Geert, thank you so much for your support! I don't think anything for this is in the library, but fortunately, .NET MAUI has the .CaptureAsync(); method built-in that works on all views. So you can use that extension method on the BarcodeGeneratorView, grab the Stream and save it. Let me know if that helps, else I'll create a little something for it :)
This is a cool feature, it was also nice to do this in forms also. I am currently working at a company that is using xamarin android native and they are worried it will be replaced by maui. The documentation is a bit confusing because it mixes xamarin and forms as if they were the same thing. Do you happen to know if native xamarin will be replaced by maui and if so will all native xamarin be obsolete? Thanks!
hello gerald I love your channel and your videos, I need a little help, I hope you can help me, I have an app that uses zxing to generate barcodes, in debug mode everything is fine, when I generate the APK everything is fine even when I install it on a physical phone or tablet, but when I open the screen that zxing uses, the app closes completely without being able to capture the error, and these happen in the screen view, I don't know what happens to the APK that cannot generate the control or Some special configuration of the control is needed, has it happened to you? can you help me?
Hey Thx for the Video ;) . could i please ask something . If i wanna build an App Today shall i start with xamarin then update to Maui? because i heared that maui isn't mature enough for that . Thx :)
Thanks for sharing! I love a good vid on a library because it gives me ideas for features I can add to my apps that I'll never have time to fully implement 🤣
Now you have me wondering what feature you are thinking to implement…
@@jfversluis Oh, the little demo app i've been working on on my channel has been a basic 'grocery list' app with some features built in, and thinking about barcodes, i bet there is probably an API out there I could use to maybe scan codes at the store to add into the list itself, or maybe do nutritional label lookups (if for some reason it's not on the item? lol now that I'm thinking about it, not sure about that one). Who knows! Half the fun is the brainstorming process, but also that's where I tend to get into trouble with my time management lol
@@ProgrammingWithChris Haha I definitely know that problem! There are some amazing APIs out there to make that happen for sure, let me know when you need anything!
Awesome. I am happy to have subscribed for the advantage packages of your UA-cam channel.
Can I ask you a little question ?
What is the state of .NET MAUI (PRODUCTION ready, or RC) ?
Is there publication on that ? This is important for my managers. Thank you.
Thank you so much for your support. It released as GA which stands for Generally Available and should be ready for production
@@andreasbramftl1106 Thank you for your feedback. Is there an agenda on when MAUI will be production ready ?
There is no agenda, .NET MAUI is deemed to be production ready. It’s very subjective. Some people like to hold of a bit longer waiting for it to mature, others have already apps published in the store. The only one who can decide if you think it’s ready for your needs is you.
@@jfversluis Many thanks. You are right in saying that I am the only one (and my company) who can decide if the current RC fits our needs. And as I have understood, there will be minor updates, but no significant evolutions where we will have to redesign your apps, so this is reassuring. Personaly, the goal of MAUI is really more than useful for developer community, but sometimes, as you know for sure, you must reassure your managers and customers. Some big applications built with MAUI and published on the stores, should give confidence. If you know some of them, I could use them to show what we can acheive with .NET MAUI. Thx.
Thank you for this, I was able to get this working in my app to scan QR codes. Is there a way to hide the CameraBarcodeReaderView once the scanning is complete. None of the obvious things seem to work: IsVisible or IsEnabled = False?
Hi Gerald,
How would I implement this generator in a .NET Blazor Maui Blazor app?
I'd like to implement this on a razor page and not via xaml.
Thank you.
Can this be done on .NET Blazor Maui Blazor ? Please please assist , I'd also like to implement this on a razor page.
Gerald, I'd like to ask you a question about .Net MAUI that's not related to this video. What's the best place to do that? Thanks
Probably easiest to join the discord server I have setup :)
Hi Gerald,
Thanks for all the videos.
Is it possible to share, export or save the generated barcodes as an image?
If so, how?
Thanks in advance.
Hey Geert, thank you so much for your support!
I don't think anything for this is in the library, but fortunately, .NET MAUI has the .CaptureAsync(); method built-in that works on all views. So you can use that extension method on the BarcodeGeneratorView, grab the Stream and save it.
Let me know if that helps, else I'll create a little something for it :)
@@jfversluis Thanks Gerald, it worked with the .CaptureAsync(); method .
@@geertgeerits I actually didn’t know this. So I was looking into it because of this 😄 need to make a video!
Small recommendation: can you start using dark theme in VS when recording your video tutorials?
Thanks for the recommendation! Not likely but who knows :)
This is a cool feature, it was also nice to do this in forms also. I am currently working at a company that is using xamarin android native and they are worried it will be replaced by maui. The documentation is a bit confusing because it mixes xamarin and forms as if they were the same thing. Do you happen to know if native xamarin will be replaced by maui and if so will all native xamarin be obsolete? Thanks!
hello gerald I love your channel and your videos, I need a little help, I hope you can help me, I have an app that uses zxing to generate barcodes, in debug mode everything is fine, when I generate the APK everything is fine even when I install it on a physical phone or tablet, but when I open the screen that zxing uses, the app closes completely without being able to capture the error, and these happen in the screen view, I don't know what happens to the APK that cannot generate the control or Some special configuration of the control is needed, has it happened to you? can you help me?
Waiting for a video on in app purchase with subscription 😉
Don't hold your breath!
Hey Thx for the Video ;) . could i please ask something . If i wanna build an App Today shall i start with xamarin then update to Maui? because i heared that maui isn't mature enough for that . Thx :)
I think you’re asking the wrong person. Obviously I would say .NET MAUI. Why don’t you try it out yourself and decide if it’s mature enough or not?
@@jfversluis thx for replying :)
Finally !
Sorry it took so long!
@@jfversluis It is okay ! But still I can't find the library on NuGet. There is just Maui.Jagdev version.
@@umuta3531 make sure you check the “include prereleases” checkbox
How to capture a barcode from the windshield of a car through a camera
plz do video on dotmim.sync