Thank you very much for always checking it out 🙏 it's much appreciated
@getmmg5 жыл бұрын
@@FilledStacks Thank you for your time and making such awesome tutorials. It really helps a flutter novice like me to learn so many new things.
@FilledStacks5 жыл бұрын
@@getmmg You're very welcome man. It makes me happy to hear that my work is making an impact. Thanks for following along :)
@taiwo7633 жыл бұрын
i am still learning from you even more than a year plus. you are just good
@FilledStacks3 жыл бұрын
That's awesome!! Thank you for commenting :) I appreciate it.
@quikmath80715 жыл бұрын
Pretty advanced stuff. A good tutorial to learn from!
@FilledStacks5 жыл бұрын
Thank you :)
@jonathan105435 жыл бұрын
Incredible stuff. You've brought solutions(Flutter hooks and sequences? sweet!) to my attention for problems I didn't even know I had! THANKS!
@FilledStacks5 жыл бұрын
Haha awesome. I'm happy to have helped.
@easazade4 жыл бұрын
i watch this video whenever i'm fuzzy about what to do when wanna create an animation in my app. great job 👌
@FilledStacks4 жыл бұрын
Me too haha 😁 Thank you, and thank you for watching :)
@gmc254quads65 жыл бұрын
Nice one. Have learnt a lot from this channel plus this gives me an idea on how to shorten my animation code. Thanks a lot and keep them coming.
@FilledStacks5 жыл бұрын
Yeeaaah! That's good news. The less code we can write the better :) I'll definitely keep it coming.
@aamilsilawat30695 жыл бұрын
You Involve all stuff in just one video...Great Keep Sharing :)
@FilledStacks5 жыл бұрын
Thanks a lot man 😊 I'll definitely keep sharing.
@PurpleWarlock5 жыл бұрын
Thank you very much. I'm new to flutter and was looking how to toggle a container with a button press.
@FilledStacks5 жыл бұрын
You're welcome. I hope you found your answer :)
@MrVipulLal Жыл бұрын
Well explained. Thanks
@FilledStacks Жыл бұрын
It's my pleasure. Happy to see the video is still helpful.
@d.rew.4839 ай бұрын
Hey Dane! Do you have any docs or references on how to use the hooks to animate widgets using the Stacked architecture? Thanks in advance!
@FilledStacks9 ай бұрын
Hi, the written tutorial linked in the description (which is all the code in this video) is all that I have on the hooks lib. stacked_hooks, the package, allows you to use normal flutter hooks in your StackedView so then you just use hooks the same as you would in any other flutter widget.
@rijin_thomas_233 жыл бұрын
Great Stuff!! Subscribed already! I have a question, is this sequence animation similar to staggered animation?
@FilledStacks3 жыл бұрын
Great! Thank you. Sequence can also do staggered animation but I don't think staggered animations can do the same thing as sequence animations.
@yavuzoncu47523 жыл бұрын
Hi Dane, any advice for accessing the animation controller instance from model properly? A stream 🤔
@FilledStacks3 жыл бұрын
Yes, I wouldn't access the animations from the model. It's all UI work so I keep it out of my ViewModel because the ViewModel should only contain business logic / pure dart. Nothing that relies on Flutter.
@mohammedfuta14024 жыл бұрын
very helpful video. but i'm having one issue. SequenceAnimationBuilder can't be assigned to a SequenceAnimation type
@FilledStacks4 жыл бұрын
Happy to hear it's helpful. I think the package might have changed by now. Press f12 on the property you're trying to assign and see what it's expecting now then supply one of those. The readme must have been updated too so you can go there and check that as well.
@muhammedsabir46285 жыл бұрын
thanks hope to continue
@FilledStacks5 жыл бұрын
I definitely will be. Thank you for watching
@matthewfrancis48974 жыл бұрын
Great video!
@FilledStacks4 жыл бұрын
Thank you! Much appreciated
@laujimmy86354 жыл бұрын
Hi, I am having trouble with the GrowingContainer. When I put Tween(begin: 0, end: 200).animate(controller) for listenable, I got an error stating "Invalid constant value". Any help is appreciated. Thank you
@FilledStacks4 жыл бұрын
Hi, it sounds like you're trying to use a const constructor in a place where you can't use a const constructor.
@laujimmy86354 жыл бұрын
@@FilledStacks So I guess Tween(begin: 0, end: 200).animate(controller) cannot be used in this situation anymore ?
@FilledStacks4 жыл бұрын
@@laujimmy8635 i think it can you'll have to remove const wherever you're using it because it's complaining about const things. not the animation itself
@laujimmy86354 жыл бұрын
@@FilledStacks ah, I see. Yes, after removing the const before GrowingContainer, the error is gone. Thank you so much.
@FilledStacks4 жыл бұрын
@@laujimmy8635 Great! You're welcome. To give some context, you can't construct a non const value and pass it to a const constructor. Everything has to be constant.
@topgeargaming86794 жыл бұрын
Your thumbnails are as awesome as ur videos, so which software do u use to create them.
@FilledStacks4 жыл бұрын
Thank yooooou :) I use Sketch when i'm on my mac, Figma when I'm on my windows machine. I'm moving over the Figma completely I think. When my current sketch license expires.
@alien4ufo3645 жыл бұрын
i wanna animate a rectangle stuck beside the screen, like when you go to the page it starts drawing a rectangle around the screen without being filled with a width like 3, starts from one point and ends to that point, i tried making it but it started growing from both sites...May you give me a hand and write the code here in commend section?
@FilledStacks5 жыл бұрын
haha, I can't. You'll have to explore around and do it. Start with the basic and then go from there. break the animation into 4 to 6 different animations and then start working on them individually.
@MuhammadUsman-vb6pn5 жыл бұрын
First like then start watching your video
@FilledStacks5 жыл бұрын
haha ☺️☺️🤩 🤩 Thank you kind sir
@mohamedgaber95003 жыл бұрын
A value of type 'Listenable' can't be assigned to a variable of type 'Animation'.
@FilledStacks3 жыл бұрын
Mmmm, maybe the api changed? I'd have to check when using the code.
@mohamedgaber95003 жыл бұрын
@@FilledStacks i fixed it by add as Animation thanks for your effort keep going
@boolcode5 жыл бұрын
Hi, very nice video 👍👍👍 Can you tell me please what software do you use to make the splash screen for this video, as I have done something like this in Flare just to discover that flare file Cannot export as video Thanks
@FilledStacks5 жыл бұрын
Thanks. I make all my videos using Davinci resolve.
@rajdave98625 жыл бұрын
ommNS om namah shivay jay mahakal maro bholiyobabonath Bro please tell me from where u are learning this flutter and all stuff
@FilledStacks5 жыл бұрын
From the documentation and the flutter code 😁
@Jerichozis5 жыл бұрын
Thanks!
@FilledStacks5 жыл бұрын
My pleasure :)
@robertmrobo89542 жыл бұрын
Going out of topic... are you a South African? you sound like an Afrikaans speaking coloured. :)
@FilledStacks2 жыл бұрын
Hey hey, no worries. Yes I am. I am from Paarl, live in Cape Town :D