your flutter videos are very helpful for me, i watched your instagram ui clone video, can you make a video of designing post upload screen (ui) similar to instagram
This was one of the most helpful tutorials I've seen. Just seeing you work so efficiently from a design is awesome. Learned a ton especially about grouping with same type widget
You can make the design using a Stack and make the curves using border radius on the Container Decoration. But yes you can make it scrollable or make it with bottom sheet as well.
21:06 their are flutter properties to give border radius to specific edges borderRadius: BorderRadius.vertical( top: Radius.circular(50), bottom: Radius.circular(0), )
This is so satisfying and clean actually, I like how you go for it. Can you try a web dashboard or something like this? With material design, that would be nice to see!
saw you are nice in flutter, should make a video on errors we find on like opening the keyboard everything flushes .you know it will be more helpfull for everyone ,our flutter community wants to improve ...and also thanks for helping us
You can directly create flutter project in vscode by pressing ctrl+shift+p > Flutter:New Project > select base folder to create project folder > give name to your app and app folder. Once the files are created the main.dart will open directly.
Hey Mitch first of all you don't know how you have made flutter simple for me , thanks soo much Secondly i think the place you used a Container was supposed to be a stack, the entire two position(blue background and white container) are supposed to be stacked instead of creating the container as a stack Anyways that's a very good video 🎉
Since you said your are a teacher can we create a student management app with Flutter i always love your tutorials bro i love how you explain thanks for the tutorials bro ❤️❤️❤️. Always one of the best tutors 👍👍👍👍
The emoticonFace column fields looks like repeated data that can be rendered through a list or just looping through some data and then rendering the column
At 21:35 , you can do a code like this to add curve to only top left and right: Expanded( child: ClipRRect( borderRadius: BorderRadius.only(topLeft: Radius.circular(50),topRight: Radius.circular(50),), child: Container( color: Colors.white, ), ), ),
To get only the top part radius in exercise section. We can do something like ClipRRect( borderRadius: BorderRadius.only( topLeft: Radius.circular(50), topRight: Radius.circular(50), ), child: Container(..), ),
Is this design responsive for small and big screen phone. How do you create responsive design from a figma design where we have to follow each pixel width and height?
Sir. Sorry, I wanna asking. in the favorite icon for speaking skills 16 exercise (31:30), why wrap it again with ClipRect()? Just using the Container() it's can also make a radius, right? why use ClipRect() again?
Ooo thankyou for you help.. so i started to code and follow you and i use the emulator android studio not the ios emulator..then i stuck at duration 17 mins something that u want to build for face emoticon.. when i see you just click on the emulator it has own emoji but when i want to find the emoji on android’s emulator i dont know how so i stop here 😅do you understand what i mean.. sorry for my english
I hope you can help me 🥰your video easy to understand and follow.. im newbie and need tk repeat certain that you code so fast but i still can catch up the code and can you make the youtube video for short cut key and explain what the function we use this code 🙏🏻✨
저도 Padding이나 Margin을 많이 사용하지만, 가끔은 코드를 읽을 때 더 쉽게 보이도록 SizedBox를 사용하는 것을 선호합니다. 저에게는 순전히 코드를 최대한 명확하고 읽기 쉽게 만드는 관점에서의 선택입니다. 사실 큰 차이는 없으니, 편한 것을 사용하시면 됩니다.
hello... @mitch koko am new here. i just became interestd in learning programming recently. i dont have any knowledge of coding at all. nothing nothing... is it okay if i start with flutter/dart ??????? or i have to learn html and css first>>> because i wanna focus on a the one i can perfect>>>> thanksss please answer my question
Hi My friend i hope you're well, regards from Colombia, can i ask you a question please? What si the site where You take the example for the app? Can You give me the name or url please? Thanks My friend, Nice video! 🙏🏼💪🏼
Hi Mitch, Thank you for your tutorial, i am just following you but i am not able to get same in my flutter, could you help? when i try to add import, for you auto complete is showing but for me not shows, also in main.dart when you click bubble its shows home page url to select but for me not shows same.
Hi, I'm trying to do a functionality which matches the face from firestore database multiple users profile image and compare it to the recently taken. If it matches timer starts. If don't just give error message. Can u guide how to implement this. And the users profile I'm using are not the user I logged in with, they are subusers. So that why I cannot jse local auth face id detection.
I really like your video and subscribe, keep going on, Bro actually i am Django developer and want to learn now UI with flutter so to create a complete mobile app,
🥷🏽 FOLLOW ME
Patreon: www.patreon.com/mitchkoko/
Instagram: instagram.com/createdbykoko/
Twitter: twitter.com/createdbykoko/
TikTok: www.tiktok.com/@createdbykoko/
We need more of this even longer if possible
your flutter videos are very helpful for me, i watched your instagram ui clone video, can you make a video of designing post upload screen (ui) similar to instagram
hi maybe you wanna clone Bla Bla Car
also we dont need that cut offs, in that videos
I had to watch this at .5 speed, learned a lot, thank you!
This was one of the most helpful tutorials I've seen. Just seeing you work so efficiently from a design is awesome. Learned a ton especially about grouping with same type widget
Bro , I can’t believe you taught me flutter within 24hrs , just 3 videos and I am making apps already ,
Thanks man ❤
hey mitch i wanted to thank you for you education, i really like how simple and calm you educate us flutter so thank you bro and keep going,
Hey mohamoud! Thank you for this comment, it really means a lot to me ❤️ i’ll keep going for people like you 👨🏽💻✌🏾✌🏾
To do the curved edges on the white container. All you need to do is to give it a boxdecoration with border radius only left and right.
omg you can do that? that's so cool I had no idea haha MOE you are a legend!
@@createdbykoko it's so common these days, idk why you missed that, also you would have tried to create a container which can move up.
BorderRadius.vertical(top: Radius.circular(25)), u can use this ,too.
thnx moe
@@satyam3762 do you have an example code or reference for moving up the container?
You can make the design using a Stack and make the curves using border radius on the Container Decoration. But yes you can make it scrollable or make it with bottom sheet as well.
21:06 their are flutter properties to give border radius to specific edges
borderRadius: BorderRadius.vertical(
top: Radius.circular(50),
bottom: Radius.circular(0),
)
Man i really like the way you build app's they look so cool, and way better than other, Really Love your content
I think there's great value that we can get out of videos like this. Thanks a bunch! 😃
This is so satisfying and clean actually, I like how you go for it. Can you try a web dashboard or something like this? With material design, that would be nice to see!
saw you are nice in flutter, should make a video on errors we find on like opening the keyboard everything flushes .you know it will be more helpfull for everyone ,our flutter community wants to improve ...and also thanks for helping us
Love this style….so easy to follow. Thanks so much!
No problem 😛
You can use the boxdecoration of the container and use border radius with only then you can use topLeft and topRight make the curve as it is
thank you so much im in my freshie year and this one help me so much!! keep going mitch!!
Bro thankyou so much! Your channel helps me a lot. Keep it up :)
No problem Lance 👨🏽💻❤️
I like the unedited style.
cool guy, always delivering something rich.
thank you :)
💡tip: you can open project in the vscode through the terminal using "code ."
superb video..! pretty calm and quiet.. I love it..! 💙
If you want to made a circular border only in the top you need to use BorderRadius.Vertical( Radius top : BorderRadius.Circular(20))
You make seem so easy, thanks you inspire me.❤❤❤
Dude i really appreciate your awesome tutorials, cheers bro.
No problem 😉 that makes me happy that it helps you👨🏽💻❤️
Keep it up. Easy to understand and follow especially for beginner like me with basic tag that u used.
A quick way to open an app in vs cod is to cd in the project when created and type in -> code .
Haha thanks for the tip !
You can directly create flutter project in vscode by pressing ctrl+shift+p > Flutter:New Project > select base folder to create project folder > give name to your app and app folder. Once the files are created the main.dart will open directly.
Hey Mitch first of all you don't know how you have made flutter simple for me , thanks soo much
Secondly i think the place you used a Container was supposed to be a stack, the entire two position(blue background and white container) are supposed to be stacked instead of creating the container as a stack
Anyways that's a very good video 🎉
This type of video is really helpful....please make more of dribble clone videos❤️
Haha hey Arjun! Glad it helps! I love cloning dribbble designs so i will do more hehee
woah bro It 's while i don't see the video you improve man !
Since you said your are a teacher can we create a student management app with Flutter i always love your tutorials bro i love how you explain thanks for the tutorials bro ❤️❤️❤️. Always one of the best tutors 👍👍👍👍
Thanks haha and yeah I am working on something similar to that 👨🏽💻
The emoticonFace column fields looks like repeated data that can be rendered through a list or just looping through some data and then rendering the column
Easy and helpful, thank you
Really dope. I learnt a lot from this video ❤
Lets gooo❤️
At 21:35 , you can do a code like this to add curve to only top left and right:
Expanded(
child: ClipRRect(
borderRadius: BorderRadius.only(topLeft: Radius.circular(50),topRight: Radius.circular(50),),
child: Container(
color: Colors.white,
),
),
),
The new style looks cool , Keep it up !!
Thanks for the comment 😇
Thank you so much for showing us how you do it. Good job!
Really dope man helped me a lot in my app creation
Hey, nice face reveal my dude! Hope your startup works out :)
Thanks Henry! How is flutter going for u?
you make me love flutter more by the day. thanks
I ❤️ flutter!! Hahahah
One request Can you start series on Custom Painters and Animations ❤️ Please
Yes definitely coming soon
Thank you dear, you did the lesson successfully
Keep up the good work 👍👍💕
thank you so much i love the way you speak and style ! cool! cool ! cool !
Haha hey thanks! Glad you like it 👨🏽💻❤️ how’s flutter going so far for u?
What a nice video. Subscribed!
1:19 yes you do have quite alot
😅 I gotta clean it up one day hahaha
Cool walkthrough. Shouldn't you be making the search-field a TextField instead of a container?
Yup hahaha you should
That's exactly what I thought too when I saw the video ... Like ... wtf is he doing !? 🤪
depends if you want to create search page seperately and when clicking the container you open the search page with a textField
getting some error while creating container() under the row children[]
Really awesome work i learned so much from your video thank you keep going 👍
thank you so much ! Now i'm able to know some widgets and how they works
Yay nice haha glad i could help. 👨🏽💻❤️
I loved this video! Thank you very much!
My pleasure bro glad u like it
To get only the top part radius in exercise section. We can do something like
ClipRRect(
borderRadius: BorderRadius.only(
topLeft: Radius.circular(50),
topRight: Radius.circular(50),
),
child: Container(..),
),
ClipRRect(
borderRadius: BorderRadius.vertical(top: Radius.circular(50)),
child: Container(
color: Colors.white,
),
),
Great video man, make more videos like this pls
glad you like them! check out my recent videos, I have made many UIs like these 💜
Hi Mitch, using the method you used in this video, the Search bar is not clickable.
Hey michael! You can use a textfield for the search bar. Here’s the tutorial for that ruclips.net/video/LFQgZc4oKa4/видео.html
This was a fun activity. I even nailed the rounded top 😂
putting emoticons is a lit 😁😁😁
thanks for the video, i would be great if you share your way of learning and the materials you used for learning flutter in a video
noted! 💜 might be a good idea for a video
I think this should have been implemented with a bottom sheet as this white area slides up through bottom nav actions
That’s a great idea ☀️❤️
Thanks alot for sharing this knowledge
God bless you 🤲🙏
Glad it helps 😇
thanks very much man this is very useful
Can you make more complex designs from dribble ?
easy to follow, thanks .😍
Hey, please make more such videos
Much appreciated
You can try:
BorderRadius: BorderRadius.vertical(top: Radius.circular(20))
Can I ask for design files(just image)
Or could you plz suggest a way to improve our ui devel skill?
Nice video but wouldnt it be better to use a TextField for the Searchbar with a hint ?
Hi Mitch Koko, can you please guide me how do you prepare all the assets of Dribble designs?
You can just google them. Also flaticon.com is a great place too
do more of this type please
Ok sure
soft. Thank you
Thank you, awesome tutorial bro. Where do i get the emoji? I am using Windows PC
Nevermind, i found it. Press Windows + .
Mate 20:03 what button are you pressing? I didn't quite understand what you was doing. Can you explain in detail?
Is this design responsive for small and big screen phone. How do you create responsive design from a figma design where we have to follow each pixel width and height?
thanks for tutorial
Sir. Sorry, I wanna asking.
in the favorite icon for speaking skills 16 exercise (31:30), why wrap it again with ClipRect()? Just using the Container() it's can also make a radius, right? why use ClipRect() again?
Yep you are correct. ClipRRect is just a quick way to do it. But you can it using containers too. In code, there are many ways to do the same thing :)
Mitch what about the custom Nav bar? Any guess how to do it?
yes probably a sliver app bar
It's very, very great 👍🏻👍🏻👍🏻
amaizng man
Awesome👍
from the emoji part, where I need to take the emoji because I use the android studio emulator
Hey I want to help. Can you rephrase your question? I want to understand to help u
Ooo thankyou for you help.. so i started to code and follow you and i use the emulator android studio not the ios emulator..then i stuck at duration 17 mins something that u want to build for face emoticon.. when i see you just click on the emulator it has own emoji but when i want to find the emoji on android’s emulator i dont know how so i stop here 😅do you understand what i mean.. sorry for my english
I hope you can help me 🥰your video easy to understand and follow.. im newbie and need tk repeat certain that you code so fast but i still can catch up the code and can you make the youtube video for short cut key and explain what the function we use this code 🙏🏻✨
Thank you
안녕하세요 잘 보고있습니다
감사합니다
컨텐츠 간격줄때 패딩으로 주지 않고 사이즈박스로 주로 주시는데
패딩이나 마진보다 우선시하시는 이유가 따로 있는지 궁금합니다
저도 Padding이나 Margin을 많이 사용하지만, 가끔은 코드를 읽을 때 더 쉽게 보이도록 SizedBox를 사용하는 것을 선호합니다. 저에게는 순전히 코드를 최대한 명확하고 읽기 쉽게 만드는 관점에서의 선택입니다. 사실 큰 차이는 없으니, 편한 것을 사용하시면 됩니다.
hello... @mitch koko am new here. i just became interestd in learning programming recently. i dont have any knowledge of coding at all. nothing nothing... is it okay if i start with flutter/dart ??????? or i have to learn html and css first>>> because i wanna focus on a the one i can perfect>>>> thanksss please answer my question
Can you share the source code so that I can compare with the code that I have. I seem to have a error but I can't locate it
can you create dribble with bloc state management please?
Very helpful 👌
How do I start if I have a custom view that is not made with Material Design? Wrong way and right way? I don't know where the beginning is
Hi My friend i hope you're well, regards from Colombia, can i ask you a question please? What si the site where You take the example for the app? Can You give me the name or url please? Thanks My friend, Nice video! 🙏🏼💪🏼
Hi Mitch, Thank you for your tutorial, i am just following you but i am not able to get same in my flutter, could you help?
when i try to add import, for you auto complete is showing but for me not shows, also in main.dart when you click bubble its shows home page url to select but for me not shows same.
I'd like to buy your course in gumroad but I'd like to see any type of proof about the content in your course
what about the source code to follow missing parts ?
Hi, I'm trying to do a functionality which matches the face from firestore database multiple users profile image and compare it to the recently taken. If it matches timer starts. If don't just give error message.
Can u guide how to implement this.
And the users profile I'm using are not the user I logged in with, they are subusers. So that why I cannot jse local auth face id detection.
How did you get to add emojis to your code?????? Can somebody help answer this?
Please share the code for this one
Very good👍
please share us modern icons 🙏🙏🙏🙏
I really like your video and subscribe, keep going on, Bro actually i am Django developer and want to learn now UI with flutter so to create a complete mobile app,
267 lines Really???
you could've made it shorter to use class and it would be more advanced.
anyway thanks for your effort.
Is that code working a android emulator
Ofc
I don't have these icons.(((
Is think design responsive?
Do you have a bilibili account?It would be nice if you could do some chinese lessons.
Sorry I am not chinese unfortunately
Pls provide the source code 🥺
Super