Jetpack Compose Course for Beginners 2024 - Android Development Full Course in Hindi

  Рет қаралды 20,342

Neat Roots

Neat Roots

Күн бұрын

Пікірлер: 63
@NeatRoots
@NeatRoots 7 күн бұрын
Get Ready to Become a Full Stack App Developer! Secure Your Spot in Cohort 2.0 Today! ✅ Form Link, Enroll Now for Extra Discount: forms.gle/ZJGui9BHesXPoXeY8 💎 Course Content: docs.google.com/document/d/14B1-wd6rIZBBEFQBElPgn-LFX5WEFpzpN5eCVI753rI/edit ✅ Enroll now via Website (Only for Indians): neatroots.com/mentorship-program/ 👉 For more details, Watch out this video: kzbin.info/www/bejne/eWa8cnWkiq98mpo Join the Cohort before 20th January to secure your spot and avail the Early Bird offer till 5 January 💸💵!
@NeatRoots
@NeatRoots 4 ай бұрын
This is the final video where we combined multiple clips into one. Now, we're excited to start working on finishing the app!
@abidkhan.10
@abidkhan.10 4 ай бұрын
Purani videos ko combine kar diya 😮
@sudaisazlan1522
@sudaisazlan1522 4 ай бұрын
i am from pakistan and sir you are teach most and good way💗💗💗
@PurelyAndroid
@PurelyAndroid 3 ай бұрын
Jetpack compose is really efficient way to develop apps. It is the way to go
@GautamPanwar-mv6po
@GautamPanwar-mv6po 16 күн бұрын
bro first fall thanks veere and yoour logic building is best
@thinktank4070
@thinktank4070 4 ай бұрын
Full support from my side bro 🔥🔥 keep it up beginner se advance tak lekar jaao bro aage advance application bhi build karna Mai pura dekhunga ❤
@RandomAura69
@RandomAura69 4 ай бұрын
Sir, it feels like you're not really putting effort into your videos lately. Simply combining old content into lengthy videos isn't helpful, especially in Android Development, where things change so fast. We need fresh, up-to-date content, not just repackaged material. If your main goal is to sell your course, it makes me wonder why you're running this channel. I hope you can take this feedback constructively and consider making improvements.
@Rajesh-x2y3z
@Rajesh-x2y3z 4 ай бұрын
Sahi baat hai, its not right
@NeatRoots
@NeatRoots 4 ай бұрын
Thank you for your feedback. This video is intended for new visitors. For our regular viewers, we're in the process of recording a complete app tutorial, which takes time to produce.
@InternationalCricketMatches-2h
@InternationalCricketMatches-2h 3 ай бұрын
Thanks a lot ❤​@@NeatRoots
@utpalmohanta
@utpalmohanta 2 ай бұрын
Great Sir....
@azharalibhutto1209
@azharalibhutto1209 Ай бұрын
Great ❤❤❤
@asherfraz1183
@asherfraz1183 4 ай бұрын
Thank you so much
@D-Coder440
@D-Coder440 23 күн бұрын
Let's begin...🔥
@AshishCameraMan72
@AshishCameraMan72 4 ай бұрын
Thanks you so much sir ❤❤❤.
@vikasadhe2209
@vikasadhe2209 4 ай бұрын
Thank you so much ❤
@_Vicky_08
@_Vicky_08 4 ай бұрын
thank you❣
@ashishdubey415
@ashishdubey415 10 күн бұрын
1:32:38 how you solve the white color issue, I didn't get please explain.
@captainAOG
@captainAOG 9 күн бұрын
package import androidx.annotation.DrawableRes import androidx.compose.foundation.Image import androidx.compose.foundation.background import androidx.compose.foundation.layout.Arrangement import androidx.compose.foundation.layout.Box import androidx.compose.foundation.layout.Column import androidx.compose.foundation.layout.Row import androidx.compose.foundation.layout.fillMaxHeight import androidx.compose.foundation.layout.fillMaxSize import androidx.compose.foundation.layout.fillMaxWidth import androidx.compose.foundation.layout.height import androidx.compose.foundation.layout.padding import androidx.compose.foundation.layout.size import androidx.compose.foundation.layout.width import androidx.compose.foundation.lazy.grid.GridCells import androidx.compose.foundation.lazy.grid.LazyVerticalGrid import androidx.compose.foundation.lazy.grid.items import androidx.compose.foundation.shape.CircleShape import androidx.compose.foundation.shape.RoundedCornerShape import androidx.compose.material3.Button import androidx.compose.material3.ButtonDefaults import androidx.compose.material3.Card import androidx.compose.material3.CardDefaults import androidx.compose.material3.Icon import androidx.compose.material3.IconButton import androidx.compose.material3.Text import androidx.compose.material3.TextField import androidx.compose.runtime.Composable import androidx.compose.ui.Alignment import androidx.compose.ui.Modifier import androidx.compose.ui.draw.clip import androidx.compose.ui.graphics.Color import androidx.compose.ui.graphics.RectangleShape import androidx.compose.ui.layout.ContentScale import androidx.compose.ui.res.fontResource import androidx.compose.ui.res.painterResource import androidx.compose.ui.text.TextStyle import androidx.compose.ui.text.font.FontFamily import androidx.compose.ui.text.font.FontWeight import androidx.compose.ui.text.style.TextAlign import androidx.compose.ui.tooling.preview.Preview import androidx.compose.ui.unit.dp import androidx.compose.ui.unit.sp import com.innovent.myapplicationcomposable.R import com.innovent.myapplicationcomposable.ui.theme.lightBlue import com.innovent.myapplicationcomposable.ui.theme.pink0 @Composable @Preview(showSystemUi = true) fun HomeUI(){ Box(modifier = Modifier.fillMaxSize().background(Color.White)){ Column(modifier = Modifier.fillMaxSize()) { Column(modifier = Modifier.fillMaxWidth().height(50.dp).background(pink0)) { Row (horizontalArrangement = Arrangement.Center){ button(R.drawable.baseline_menu_24,Color.White,"menu") Column(modifier = Modifier.fillMaxHeight(),verticalArrangement = Arrangement.Center) { Text("Check Now" , style = TextStyle(fontSize = 20.sp, color = Color.White) ) } Row (modifier = Modifier.fillMaxWidth(), horizontalArrangement = Arrangement.End){ button(R.drawable.baseline_search_24,Color.White,"search") } } } Card(modifier = Modifier.fillMaxSize()) { LazyVerticalGrid(columns = GridCells.Fixed(2)){ items(Data.datalist){ showSuit(data = it) } } } } } } @Composable fun button(@DrawableRes icon:Int,tint:Color= Color.Unspecified,type:String){ IconButton (onClick = {}) { Icon(painter=painterResource(id = icon), contentDescription = "", tint = tint) } } @Composable fun showSuit(data:Data.Images){ Card( modifier = Modifier .width(170.dp) .height(250.dp) .padding(vertical = 5.dp, horizontal = 5.dp).background(lightBlue, shape = RoundedCornerShape(12.dp)), elevation = CardDefaults.cardElevation(8.dp) ){ Box(modifier = Modifier.fillMaxWidth().fillMaxSize().background(lightBlue), contentAlignment = Alignment.Center){ Column ( modifier = Modifier.fillMaxWidth().padding(vertical = 5.dp, horizontal = 5.dp) , horizontalAlignment = Alignment.CenterHorizontally ){ Image(painter = painterResource(id=data.image), contentDescription = "", modifier = Modifier.size(110.dp).clip( RoundedCornerShape(8.dp)), contentScale = ContentScale.Crop) Text( text = data.price, style = TextStyle(fontSize = 14.sp, fontFamily = FontFamily.SansSerif, fontWeight = FontWeight.W100, color = Color.Red), textAlign = TextAlign.Center) Text( text = data.name, style = TextStyle(fontSize = 18.sp, fontFamily = FontFamily.SansSerif, fontWeight = FontWeight.W700, color = Color.Green), textAlign = TextAlign.Center) Text( text = data.disp, style = TextStyle(fontSize = 15.sp, fontFamily = FontFamily.SansSerif, fontWeight = FontWeight.W300, color = Color.Cyan), textAlign = TextAlign.Center) Button(onClick = { }, modifier = Modifier.width(100.dp), shape = RoundedCornerShape(12.dp), colors = ButtonDefaults.buttonColors(contentColor = lightBlue)) { Text("Add", style = TextStyle(fontWeight = FontWeight.W400, color = Color.White, fontSize = 16.sp), textAlign = TextAlign.Center) } } } } }
@loolkummar
@loolkummar 4 ай бұрын
Mene full video dekh liya👍👍👍
@manavpatni
@manavpatni 4 ай бұрын
Great video...
@dshorts9604
@dshorts9604 4 ай бұрын
Thanks bhaiya
@AmanKumar-ec6bz
@AmanKumar-ec6bz 4 ай бұрын
Aa rha ek aur project achha wala wait kro sab😊
@mrmohammadshah
@mrmohammadshah 2 ай бұрын
How to create nonprofit organization website using kotlin? Give advice please 🙏
@muhammadsufyan2904
@muhammadsufyan2904 2 ай бұрын
liked and subscrubed
@udaykumaryadav-mq8oh
@udaykumaryadav-mq8oh 4 ай бұрын
Love you sir❤❤❤🎉🎉
@gauravrawal1214
@gauravrawal1214 3 ай бұрын
That time, I am conpouse.Continue with Native android development or move to flutter.please guide me
@Rajpootcomedianstudent
@Rajpootcomedianstudent 4 ай бұрын
Nice video
@rishavkumarshrivastava148
@rishavkumarshrivastava148 3 ай бұрын
I don't know what's the issue but while building UI...It's not loading on my AVD correctly. ..maybe this seems to be the Ide issue ...but I tried rebuilding it and same issue arises again....I only get the Menu Icon and that too overlapping the camera....Iam using the latest version of Android studio. ..ie. Ladybug one..
@SachinSharma-b9p
@SachinSharma-b9p Ай бұрын
In ladybug bro ,I can suggest you to remove the compose part (extra code) other then the default kotlin code that was traditionally used , message me if still confused
@divyanshsoni314
@divyanshsoni314 4 ай бұрын
Which android studio theme are you using ?
@huzaifaidrees2167
@huzaifaidrees2167 4 ай бұрын
First 🎉
@loolkummar
@loolkummar 4 ай бұрын
Nice video
@anveshpaunikar6476
@anveshpaunikar6476 23 күн бұрын
Should i get the source code of live chat app
@Alionline2
@Alionline2 4 ай бұрын
nice
@_shubh02
@_shubh02 4 ай бұрын
1:4:54 kya edit kiya hai yee ??
@munnajaiswal-w5v
@munnajaiswal-w5v Ай бұрын
I can't find the db of shayari app
@Muhammad-Shafqat
@Muhammad-Shafqat 4 ай бұрын
Make Fitness Tracker App
@FARHANAhmed-gg7fn
@FARHANAhmed-gg7fn 4 ай бұрын
Bro neatroot acha video banata he but serial ka dihan nehi rakhta
@tunhlaing8979
@tunhlaing8979 4 ай бұрын
Thz
@shlokkumar1721
@shlokkumar1721 3 ай бұрын
sir i am beginners kya itana placement ke liye ya kuchh our bhi padana padega please reply
@dinkarkumar9203
@dinkarkumar9203 3 ай бұрын
You must know about kotlin,jetpack,xml, corutines, retrofit
@rishavkumarshrivastava148
@rishavkumarshrivastava148 3 ай бұрын
Can i use the latest version of Android studio...i.e, ladybug version ? it has many changes
@SachinSharma-b9p
@SachinSharma-b9p Ай бұрын
Brother same Question😂
@pandit538
@pandit538 4 ай бұрын
What is the meaning of crash?
@ujastechie
@ujastechie 4 ай бұрын
From starting means starting from basic
@pandit538
@pandit538 4 ай бұрын
@@ujastechie ok🙏
@bgminoobgamer6328
@bgminoobgamer6328 4 ай бұрын
@vishal bhai ye 12 hours ki video krke android app developer bn jaynge na ????❤
@RandomAura69
@RandomAura69 4 ай бұрын
Nehi
@bgminoobgamer6328
@bgminoobgamer6328 4 ай бұрын
@@RandomAura69 kyu bhai
@RandomAura69
@RandomAura69 4 ай бұрын
@@bgminoobgamer6328 because this is not enough for learning Complete Android Development you will get just a overall basic idea of Android Development by this video
@ahmedshaikh6258
@ahmedshaikh6258 4 ай бұрын
❤❤❤❤❤
@MrVrtex
@MrVrtex 4 ай бұрын
Bhai kabhi bich raste mein mil jana, gale milna hai
@NeatRoots
@NeatRoots 4 ай бұрын
@@MrVrtex arry wo Rasta hai kha? Jha sy mery ko guzrna hai.
@machinecode2.047
@machinecode2.047 4 ай бұрын
Koi code Kam nehi karega e course me me janta ho
@dshorts9604
@dshorts9604 4 ай бұрын
Bhai free me de raha h kam se thoda sa to appreciate kar do
@machinecode2.047
@machinecode2.047 4 ай бұрын
@@dshorts9604 kya faida he code ta nehi chalta he
@machinecode2.047
@machinecode2.047 4 ай бұрын
@@dshorts9604 kuch free nehi KZbin se paise ata he
@jackkkkz
@jackkkkz 4 ай бұрын
Ohh My God!!! 12 hrs course . . . . . . . . . . .. . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . . .. . . . . . . . . .. .. . . 😮😮😮
@AmanKumar-ec6bz
@AmanKumar-ec6bz 4 ай бұрын
omg
@loolkummar
@loolkummar 4 ай бұрын
❤❤❤
小丑教训坏蛋 #小丑 #天使 #shorts
00:49
好人小丑
Рет қаралды 54 МЛН
How Strong Is Tape?
00:24
Stokes Twins
Рет қаралды 96 МЛН
UFC 310 : Рахмонов VS Мачадо Гэрри
05:00
Setanta Sports UFC
Рет қаралды 1,2 МЛН
DSA & ₹1.2 Crore Per Annum Jobs - The Truth? (No Offence)
12:22
CodeWithHarry
Рет қаралды 754 М.
Coding a FULL App with AI (You Won't Believe This)
15:19
Creator Magic
Рет қаралды 358 М.
Android Development Tutorial For Beginners In Hindi (With Notes) 🔥
11:43:10
CLASS | Zakir khan | Stand up Comedy | Sukha Puri 8
24:07
Zakir Khan
Рет қаралды 9 МЛН
أسرار النجاح كمبرمج مع سعيد واحد 🇲🇦🖥️ @saidwahidmaroc
48:32
بلا ميعاد بودكاست مع امين وطارق
Рет қаралды 75 М.
Best of CES 2025
14:50
The Verge
Рет қаралды 276 М.
小丑教训坏蛋 #小丑 #天使 #shorts
00:49
好人小丑
Рет қаралды 54 МЛН