Flutter Stacked Item ListView | Flutter UI Design Tutorial | Scroll Animation

Flutter Stacked Item ListView | Flutter UI Design Tutorial | Scroll Animation

RetroPortal Studio

4 года назад

159,565 Просмотров

Ссылки и html тэги не поддерживаются


Комментарии:

@newagedresses5911
@newagedresses5911 - 29.10.2024 15:48

how to stop the list items to stop fading and just stack on one another?

Ответить
@codex8797
@codex8797 - 26.02.2024 18:02

Thanks bro

Ответить
@mohamedsokary2818
@mohamedsokary2818 - 08.09.2023 23:14

astonishing video can you please explain how can i make the bottom of the list fade while scroling up

Ответить
@dheerajreddymallapu9014
@dheerajreddymallapu9014 - 22.08.2023 16:34

You do not just show the code but explain why it is used and how it works.
Thank you.

Ответить
@SomeshRajvlogs
@SomeshRajvlogs - 03.07.2023 23:26

Thanks friend

Ответить
@pravinprince3221
@pravinprince3221 - 19.05.2023 11:55

Thank you for the wonderful video sir it is very helpful for me and my team, Thanks again sir

Ответить
@IshaManiTripathi
@IshaManiTripathi - 16.05.2023 14:41

Hey, nice video but I am facing an issue when the card length is around 4 and when i scoll up the screen does not hangs u p there but the closeTopContainer value changes and cantainer expands and my list goes down automatically

Ответить
@haiderjaafer8164
@haiderjaafer8164 - 14.11.2022 22:29

Really great tutorial... But need more clarification to understand 🙂

Ответить
@stryder12345
@stryder12345 - 22.10.2022 22:09

Nice guide, but i have question, how can i update listview by tapping on ScrollController?

Ответить
@망고-r9l
@망고-r9l - 20.10.2022 13:14

Wow... I absolutely look forward to watch this vedio

Ответить
@paryt7696
@paryt7696 - 15.10.2022 05:08

If we use Align with height factor, the onTap events stops working. Can you please alternate of this approach so onTap will also not stop working for each widget item

Ответить
@akhiefeilong3650
@akhiefeilong3650 - 08.10.2022 12:51

wow! you amazing matt!

Ответить
@prakashanuvadia8870
@prakashanuvadia8870 - 18.07.2022 05:09

Superb Explain

Ответить
@zetalukiest8100
@zetalukiest8100 - 06.06.2022 11:50

The video is useful as you hoped, however it's difficult to follow your explanation.

Ответить
@meditainment4225
@meditainment4225 - 28.04.2022 05:16

Your knowledge, your experience, your skills, the way you defined, the accent and all the things i have sense in this video is Absolutely mind blowing, informative and extremely worthy....
I am Thanking you for sharing this type brilliant knowledge, ideas, concepts, experience and all other stuffs with us ❤️❤️

Ответить
@ninadtamdu2324
@ninadtamdu2324 - 16.04.2022 11:00

Thank you sir

Ответить
@zerocole26
@zerocole26 - 14.03.2022 13:12

Hi, Im trying to figure out how to make, the overlap on current top item only, instead of all items. Do you think its possible? Thanks

Ответить
@ayushdondavlogs
@ayushdondavlogs - 08.03.2022 18:44

what is the first 22 line in main.dart file

Ответить
@Ajithkumar-dv4pq
@Ajithkumar-dv4pq - 24.02.2022 08:34

thanks. great explanation for scroll animation

Ответить
@toyly2820
@toyly2820 - 21.02.2022 02:21

magic

Ответить
@faizulla5838
@faizulla5838 - 12.02.2022 20:33

Ты просто Красавчик!!!

Ответить
@faizulla5838
@faizulla5838 - 12.02.2022 20:32

Nice!!!! Broo Nice Nice & Nice !!!!!

Ответить
@terrigualbertokuchay691
@terrigualbertokuchay691 - 14.01.2022 04:33

very good introduction of an interface, I subscribe, hey by chance you don't have anything else but with a purchase system. I would like to see how you would use it

Ответить
@flutteringonvsc2766
@flutteringonvsc2766 - 05.01.2022 17:20

Nice Video but can you do it again with real-time database using Card UI and use Crud Please

Ответить
@rodrigoroman4886
@rodrigoroman4886 - 21.12.2021 21:30

Thank you for the video! How would you place the items in the list behind each other instead of on top?

Ответить
@ismailkoyuncu5518
@ismailkoyuncu5518 - 01.12.2021 18:12

Thanks for all. We are waiting new the videos

Ответить
@Inandoutpk
@Inandoutpk - 19.11.2021 18:12

Thank you so much , Excellent Video

Ответить
@jsagar95
@jsagar95 - 07.11.2021 18:47

Thanks for the great tutorial!

Ответить
@marcosmelgosavazquez344
@marcosmelgosavazquez344 - 05.11.2021 08:20

Great tutorial and great explanation, the only thing I saw is that the scale logic seems to be a little wrong, the first element (index 0) when scroll is already in opacity of 0.5 by the logic, and then, in the next indexes, seems to be moved by double between var topContainer and current index... so I made some changes in logic and this is working pretty fine on my app:

double scale = 1.0;

if(_topContainer < 0.5 && index == 0){
scale = 1 - (_topContainer * 2);
if (scale < 0) {
scale = 0;
} else if (scale > 1) {
scale = 1;
}
}

if (_topContainer > 0.5 ) {
scale = index + 1 - (_topContainer * 2);
if (scale < 0) {
scale = 0;
} else if (scale > 1) {
scale = 1;
}
}

Any way, I read that is very bad for performance using setState every time that user scrolls... but, is just an approach

Ответить
@TutorialesChupao
@TutorialesChupao - 31.10.2021 22:49

How do I make each container in the listview go to a different view? Thanks in advance 👍🔥🔥

Ответить
@techendlimited5241
@techendlimited5241 - 13.10.2021 19:45

Nice and superb explanation! One just need to sit and digest it. Nice one, keep it up!

Ответить
@TechticalTutorials
@TechticalTutorials - 30.09.2021 17:29

Nice video, can you give example how to return the coloring horizontal list at the top to return to each different screen?

Ответить
@hamzaallane5760
@hamzaallane5760 - 31.08.2021 18:27

Great explanation , thank you , i just have one question : why did you choose controller.offset > 50 , why 50 ? thanks again .

Ответить
@muhammadhaseeb9141
@muhammadhaseeb9141 - 16.08.2021 09:03

first of all thanks for such a wonderful content.... secondly I want to know how to navigate .. for example if I touch on cola item it navigates me to screen 1 and if touch on burger item it will navigate me to screen 2 and if I touch on noodles it navigates me to screen 3 and so on .. Kindly, get me out of this situation. Thank You :)

Ответить
@IqbalHussain-nl2lc
@IqbalHussain-nl2lc - 15.08.2021 09:21

wow! that was an amazing way of doing that animation and very well explained. Thank you man, You have got amazing skills!

Ответить
@ThunderboltPath
@ThunderboltPath - 06.08.2021 19:18

I'm a dev looking to jump start a new app with Flutter. I've learned it before but never used Flutter in a real app. This is perhaps the best tutorial with source code to boilerplate a new app. Well done, bro!

Ответить
@andressasouza6186
@andressasouza6186 - 02.08.2021 16:33

Thankyou for your contributions, friend! They are helping me a lot. THank you very much from Brazil =)

Ответить
@MossaabMoulim
@MossaabMoulim - 19.07.2021 23:17

i tried chaing the heightFactor to 1 because i dodnt want the items to overlap eachother but the animation wile scrolling got messed up items desappear without eaching the top of the screen

Ответить
@MossaabMoulim
@MossaabMoulim - 19.07.2021 23:15

i love your tutorials

Ответить
@hachillie
@hachillie - 19.07.2021 19:45

Good use case with best narration.. Keep the good work

Ответить
@madhurireddy7418
@madhurireddy7418 - 29.06.2021 10:22

bro you are the best ,no cap

Ответить
@RabbanahMalayalam
@RabbanahMalayalam - 19.06.2021 15:06

Genius👍 mashaallah

Ответить
@M37Shadow
@M37Shadow - 25.05.2021 10:48

So good thanks for sharing your knowledge and skills

Ответить
@Randomvideo276
@Randomvideo276 - 16.05.2021 15:37

how can i make scrollable page if i use stack in body help

Ответить
@zubairayazasim5187
@zubairayazasim5187 - 06.05.2021 15:25

can u provide the starter project?

Ответить
@kolyamadridano3640
@kolyamadridano3640 - 25.04.2021 11:04

You speak like one of flutter team widget of the week narrator cool

Ответить
@hsnham6020
@hsnham6020 - 17.04.2021 09:26

عاشو 👏👏🔥

Ответить
@ttng_
@ttng_ - 10.04.2021 10:34

How can I remove the offset for a single card so that it would expand when I press it? Thank you!!

Ответить
@muhammadabuhuraira1222
@muhammadabuhuraira1222 - 08.04.2021 19:48

Things like this should be highly appreciated.Great job.Well done

Ответить