Пікірлер
@Muhammad-Shafqat
@Muhammad-Shafqat 4 күн бұрын
❤❤❤A masterpiece
@anyelovinzen514
@anyelovinzen514 4 күн бұрын
Thank you for sharing your knowledge, excellent explanation.
@mohamedasraf4175
@mohamedasraf4175 10 күн бұрын
Bro please teach REST API concept
@Muhammad-Shafqat
@Muhammad-Shafqat 10 күн бұрын
♥♥♥Love it 🧡
@thomasjoseph9982
@thomasjoseph9982 17 күн бұрын
Thank you
@HoodLabs
@HoodLabs 17 күн бұрын
You're welcome
@mohammadabubaker6853
@mohammadabubaker6853 18 күн бұрын
Continue the wonderful explanation and do not delay in uploading the videos. You will get many views because there is not enough explanation on this topic
@KingFuYouTube
@KingFuYouTube 17 күн бұрын
true
@PrajeshGovindaraje
@PrajeshGovindaraje 19 күн бұрын
Can you make a video on how to implement nested navigation using type-safe-navigation ???
@girishparate6410
@girishparate6410 19 күн бұрын
Nice
@lucasianii8178
@lucasianii8178 25 күн бұрын
Thank you sir, if you don't mind please preview as you live
@akshaysarapure7954
@akshaysarapure7954 28 күн бұрын
sir how can i apply the theme you are using on my studio
@HoodLabs
@HoodLabs 27 күн бұрын
Android studio new Ui which you can enable with new version of android studio
@ubersticks
@ubersticks 28 күн бұрын
At 38:02 this is poetry! I love how you @Injected the current/daily/hourly mapper interfaces instead of instantiating them (messy). Great idea and I have not seen this done before.
@ubersticks
@ubersticks 29 күн бұрын
So far (30 minutes in) this is a great video Hood 🙂 One suggestion: "Entity" is typically a term reserved for database operations. For API interactions, the typical terminology is "DTO" for data-transfer object". In this case (so far) you are clearly using DataClasses that are DTOs since there is no local database beiing used. This is a nitpick though; otherwise I think your approach is 100% right one.
@viki9126
@viki9126 Ай бұрын
awsm
@HoodLabs
@HoodLabs Ай бұрын
There was a bug in the tutorial. The Audio data class was missing the implementation for Parcelable, which caused the app to crash in the foreground. To fix this, make sure to implement Parcelable by using the @Parcelize annotation and add the necessary dependency. Here’s what you need to do: Add the Kotlin Android Extensions plugin in your build.gradle (module:App) plugins { ... id("kotlin-parcelize") } then Impleement Parcelable for Audio Data Class and the error will be fixed when navigation to foreground @Parcelize data class Audio( val uri: Uri, val displayName: String, val id: Long, val artist: String, val data: String, val duration: Int, val title: String, ):Parcelable
@sarthakvashistha6290
@sarthakvashistha6290 Ай бұрын
Can you please share the final code as my app is crashing every time I press on add button on the home screen?
@YoYo-op8hr
@YoYo-op8hr Ай бұрын
Bro can you make such projects with compose multiplatform pleaseee
@ItzResurgence
@ItzResurgence Ай бұрын
Thank you for providing such a beautiful step-by-step tutorial✨ . . One request, can you make a video on clean architecture and what folders, files are required to be created because I get confused most of the times, because when I watch someone else tutorial or code they have a different approach of managing their project.
@samirdesigner3324
@samirdesigner3324 Ай бұрын
thank you make music player use 5 sound get sound from raw folder
@dewetvanrooyen8458
@dewetvanrooyen8458 Ай бұрын
Great app well done. Thanks for posting.
@junlapunete1602
@junlapunete1602 Ай бұрын
thank you, very nice tutorial its better if there is a source code.
@iqbalrivaldi2856
@iqbalrivaldi2856 Ай бұрын
Thank you sir, i want to suggest you make the ui clone apss like instagram or whatsapp eith jetpack compose😁
@mostafamohamed.
@mostafamohamed. Ай бұрын
hey , thank for the video but why i dont have sharedTransitionScope when using SharedTransitionLayout ?
@user-Farooqzx
@user-Farooqzx Ай бұрын
Thank you bro
@ZzzzPunnawat
@ZzzzPunnawat Ай бұрын
So beautiful and very smoth, Can you provide repository for this example ?
@HoodLabs
@HoodLabs Ай бұрын
All code is on GitHub check the description.
@kadircan1862
@kadircan1862 Ай бұрын
thank you for this great video .
@girishparate6410
@girishparate6410 2 ай бұрын
Very Nice vidoe sir
@tebogomakhubela6704
@tebogomakhubela6704 2 ай бұрын
I have been searching for a tutorial like this one. your way of teaching is incredible and it show that you understand you are teaching. thank you for sharing your knowledge🤙🤙🤙👏👏👏
@mfaizhussain7
@mfaizhussain7 2 ай бұрын
Your IDE is Intelli J IDEA??
@HoodLabs
@HoodLabs 2 ай бұрын
Android studio, with new Ui.
@mfaizhussain7
@mfaizhussain7 2 ай бұрын
@@HoodLabs Your project is KMP based Or normal compose
@HoodLabs
@HoodLabs 2 ай бұрын
Native android project.
@techxyz5475
@techxyz5475 2 ай бұрын
Nice😀
2 ай бұрын
What you like react Native or Flutter, apart from this?
@ronalkspdev
@ronalkspdev 2 ай бұрын
Hello friend, I'm trying to follow the tutorial but the main branch is empty, it only has a readme. Then I go to the master branch, and it has the app already finished, I tried to write the FoodCollection.kt but I saw that it has more things than what you show in the video, but I don't like to copy and paste because I like to write everything when I'm learning. Can you post the initial commit corresponding to the first video?
@EnglishStories1981
@EnglishStories1981 2 ай бұрын
Hi why not the project is cloned from Git?
@ShourovRoy-pk5zm
@ShourovRoy-pk5zm 2 ай бұрын
The clicks and behaviour looks like google product. Which can be modified in Flutter. Just want to know if we can also change it in jetpack compose or not. If yes, can you please demonstrate with a dedicated video
@HoodLabs
@HoodLabs 2 ай бұрын
Yes you can customize everything from fonts, animations,theme, layout s, and more by creating custom composable for everything. As for example a button uses a surface which is available and the parameters are easier to customize to the look and appearance you want.
@bebaoboy
@bebaoboy 2 ай бұрын
WOW THIS IS SO HELPFUL FOR BEGINNERS LIKE ME. THANKS A LOT🎉
@junlapunete1602
@junlapunete1602 2 ай бұрын
please can you provide the complete source code of this tutorial?
@HoodLabs
@HoodLabs 2 ай бұрын
Source code is provided check git hub link remember to change branches to access different codes.
@junlapunete1602
@junlapunete1602 2 ай бұрын
@@HoodLabs thank you
@junlapunete1602
@junlapunete1602 2 ай бұрын
Please can you provide the complete source code of this tutorial?
@alfredlotsu9580
@alfredlotsu9580 2 ай бұрын
MVVM so important
@girishparate6410
@girishparate6410 2 ай бұрын
Very Nice
@justmeagain9302
@justmeagain9302 2 ай бұрын
Just in timeeeee, i need ideas about designs
@Aid1366
@Aid1366 2 ай бұрын
You explain well, at the same time I study the documentation from Google - it’s not always immediately clear to read), but you explain well and, most importantly, according to Google’s recommendations! I looked at your videos, architecture, etc! There are many different channels on KZbin, but many provide irrelevant information! You give me what I need! Don't give up the channel, develop it... we will learn with you)!
@winford9105
@winford9105 2 ай бұрын
'promo sm' 😊
@To-MaaTo
@To-MaaTo 2 ай бұрын
aur btao kya chalra hai?
@abouteverything6293
@abouteverything6293 2 ай бұрын
Hi if i have a grid of cards in one page and every card have its own state, using a viewmodel how can i control the state for all the cards with different events without having conflicts between the state of cards, i am facing a trouble am putting the last in a MuTableStateFlow<Muttable map, but functions are causing resets in different states.
@MyHobbies-qh8pg
@MyHobbies-qh8pg 3 ай бұрын
Hi guys, i am encountering this in ROOM DB database is locked (5) (SQLITE_BUSY)
@egesamur9238
@egesamur9238 3 ай бұрын
Finally someone actually thought of making a tutorial with RestAPI and Clean Arch. Great work mate, keep it up !! thank you soooo much man
@user-ed8xj1py6w
@user-ed8xj1py6w 3 ай бұрын
Hi. where can I see the list of dependencies?
@MojtabaFazeli-hl8dh
@MojtabaFazeli-hl8dh 3 ай бұрын
Hi, when connect to this address, after some time , have error message and don't complete load.
@JeeteshSurana
@JeeteshSurana 3 ай бұрын
Thanks very helpful
@nguyenhongan9938
@nguyenhongan9938 3 ай бұрын
logout how? help me
@T-MAN-bm3th
@T-MAN-bm3th 3 ай бұрын
I'm 4ll this channel from now on just bec of comments I'm seeing