- Видео 13
- Просмотров 10 600
dotnet Builds
Добавлен 23 апр 2024
Full Stack .NET software development tutorials.
.NET MAUI | Build a YouTube Studio Clone - 03 - Latest Published Content Cards
In this .NET MAUI tutorial series, we're building a clone of the RUclips Studio app. In this video, we add in the cards for the latest published content section of the dashboard page.
www.flaticon.com/free-icons/finger title="finger icons" Finger icons created by SA Family - Flaticon
www.flaticon.com/free-icons/finger title="finger icons" Finger icons created by Smashicons - Flaticon
www.flaticon.com/free-icons/finger title="finger icons" Finger icons created by SA Family - Flaticon
www.flaticon.com/free-icons/finger title="finger icons" Finger icons created by Smashicons - Flaticon
Просмотров: 185
Видео
.NET MAUI | Build a YouTube Studio Clone | Dashboard Page
Просмотров 251Месяц назад
In this .NET MAUI tutorial video, we build the first part of the dashboard page of the RUclips Studio app using .NET MAUI.
Build a YouTube Studio Clone with .NET MAUI
Просмотров 7597 месяцев назад
In this video, we get started with building a clone of the RUclips Studio app using .NET MAUI and XAML.
What is XAML?
Просмотров 4277 месяцев назад
XAML (eXtensible Application Markup Language) is a declarative XML-based language used for building UIs. Learn more: learn.microsoft.com/en-us/visualstudio/xaml-tools/xaml-overview?view=vs-2022
Build a .NET MAUI Calculator App | Full Course
Просмотров 6 тыс.8 месяцев назад
In this video, we build a calculator app using .NET MAUI, XAML, and MVVM. Get started with .NET MAUI: learn.microsoft.com/en-us/dotnet/maui/get-started/installation?view=net-maui-8.0&tabs=vswin What is MVVM? ruclips.net/video/AXpTeiWtbC8/видео.htmlfeature=shared
Implement Calculator Functionality Using MVVM - .NET MAUI Calculator App 03
Просмотров 3878 месяцев назад
In this video, we Implement the MAUI calculator functionality using MVVM with the CommunityToolkit.MVVM NuGet package. Learn more about MVVM: ruclips.net/video/AXpTeiWtbC8/видео.htmlfeature=shared Playlist: ruclips.net/p/PLcs1ggwjYV_827HGxtYKmaH1SD87KEc0r
Building the Calculator Buttons - 02 .NET MAUI Calculator App
Просмотров 5628 месяцев назад
In this .NET MAUI app tutorial, we build the number pad for our calculator app using styles and colors in XAML. Playlist: ruclips.net/p/PLcs1ggwjYV_827HGxtYKmaH1SD87KEc0r
Build a Calculator app with .NET MAUI and XAML
Просмотров 1,4 тыс.8 месяцев назад
In this video, we get started with building a calculator app using .NET MAUI and XAML. We go over how to create a new .NET MAUI project and start building the layout. Install Visual Studio Community for .NET MAUI development. learn.microsoft.com/en-us/dotnet/maui/get-started/installation?view=net-maui-8.0&tabs=vswin
What is .NET MAUI?
Просмотров 1788 месяцев назад
In this video, we go over what .NET MAUI is and why it's a great option for cross-platform app development.
What is Entity Framework?
Просмотров 1668 месяцев назад
In this video, we go over what Entity Framework is and the different approaches of creating and interacting with a database using Entity Framework.
What is Dependency Injection?
Просмотров 1578 месяцев назад
In this video, we take a quick look at what dependency injection means. Learn more: learn.microsoft.com/en-us/aspnet/core/fundamentals/dependency-injection?view=aspnetcore-8.0
What is Blazor?
Просмотров 3018 месяцев назад
In this video, we go over what Blazor is in ASP.NET Core and why it's a great framework for building modern web applications. Learn more: dotnet.microsoft.com/en-us/apps/aspnet/web-apps/blazor
What is ASP.NET Core?
Просмотров 2518 месяцев назад
In this video, we go over what ASP.NET Core is, why it's widely used, and the different project types it offers. learn.microsoft.com/en-us/aspnet/core/tutorials/choose-web-ui?view=aspnetcore-8.0
I want to hire you. RUclips Studio Clone app project. How i contact you?
I want to hire you for my yt studio clone project.
Thanks for the series, I eagerly await for the next video.
Minute 1:52. The image is always to the right of the vertical stack.
The most valuable part of a video: the framework limitations! Thanks. That gives a person a great orientation.
How you got that app preview??
I'm debugging on a local device and using the SCRCPY tool (scrcpy.org) to mirror the screen.
Thank you very much! I've been waiting for a long time. If it's not too much trouble, don't abandon the series. It's very clear 👌👍
Thanks
Eager to see next parts..
More videos coming soon
Straight to the point instructions. Thank you very much.
You should upload MVC, Blazor, Razor Pages, MAUI, API, EF Core. It'd be cool. Do more coding tutorials with those.
Wonderful project and explanations.
Great video! Looking forward to the next part.
Cool.❤ Please finish these episodes
Kaynak koda nasıl ulaşabilirim?
brillant
TY for the video. It's too bad you did not include any code on how to do the calculations. So essentially this is great for UI but will never work without the user spending time creating the methods to do the calculations. If you want to create a demo for UI that is fine. But saying you will show how to create a calculator app and not actually finishing it is kind of pisses off the user. Sure I can figure it out given enough time. But I have other things I need to do. TY for help with UI but most of this is just completely useless if anyone watching wants to actually have a functional calculator app at the end.
Here's the code for the MainPageViewModel: goonlinetools.com/snapshot/code/#cb0ijs1iiluajnb3zdopan
@@dotnetbuilds TY that was incredibly fast and also helpful :)
This fixes a few issues string GenerateExpression() { var item = CalcDisplay.Replace('×', '*').Replace('÷', '/').Replace(")+", "+").Replace("%", "*0.01").Replace(")*", "*").Replace(")", "*").Replace("*(", "*").Replace('(', '*').Replace("+*", "+"); item = item.First() == '*' ? item.Remove(0, 1) : item; item = item.Last() == '*' ? item.Remove(item.Length - 1, 1) : item; item = item.First() == '(' ? item.Remove(0, 1) : item; item = item.Last() == ')' ? item.Remove(item.Length - 1, 1) : item; return item; }
Please show the code of the ending!🥲
goonlinetools.com/snapshot/code/#cb0ijs1iiluajnb3zdopan
Add: if (buttonText == "AC") { CalcDisplay = string.Empty; Result = string.Empty; CursorPosition = 0; // Add this line }
Excellent video.
🍁🍁🍁🌳🍀🍀
Amazing, thanks for posting
Thank you so much for taking your valuable time to help others, it's greatly appreciated. 4:04 Here you're in the _Platforms\Android\Resources\MainApplication.cs_ file, I can verify it by looking at the Solution Explorer window and in that file I see: using Android.App; using Android.Runtime; But here 4:12, while you're still in that _MainApplication.cs_ file you've gone inside the namespace so the _using_ lines no longer exist. I have no idea how you did that. I don't know if you removed all of the _using_ lines and the brackets for the namespace, moving it to it's line. All I know if if I do that exact same thing I get all sorts of errors because I no longer have the Android _using_ lines and in addition it's missing a using line to keep the code from erroring out. To make the code work you need: using Android.App; using Android.Runtime; using Android.Content.Res; I've made instructional videos so I know how hard it can be to record it all without messing up, it's a PITA to try to do it start to finish without cuts, but sometimes, often times, you lose the plot in that very cut that's supposed to save you time and effort. What I like to do is have a virtual machine setup with the basics like the IDE and then follow my own instructions from start to finish to see if it works. Thank you again for taking your time to help others.
The using statements are actually there, but you're correct-they should have been shown on the screen. The only change was a switch to file-scoped namespaces (which should also have been explained as it can be confusing for beginners). I think the idea of going over the steps again in a VM is good one. Thanks for the helpful feedback. 👍
Great, thanks. 1:42 Cool
Thanks.
Thanks for explaining this importnat concept.
Great, hope to see more updated .NET tutorials, explanations, projects and courses.
Awesome video! Very clear explanations :)
Thanks :)
Nice video. Even though I've done XAML development for years, I still watch your videos because they are fun. Keep up the good work.
Thanks 🙂
Yeh dono code send kr dy
short and simple, nice video keep up the good work
Thanks. Glad you liked it. 👍