Complete Flutter Animation Guide | Flutter Hooks for Animation | Flutter Animation Sequences

  Рет қаралды 18,109

FilledStacks

FilledStacks

Күн бұрын

Пікірлер: 55
@getmmg
@getmmg 5 жыл бұрын
Excellent one as always.
@FilledStacks
@FilledStacks 5 жыл бұрын
Thank you very much for always checking it out 🙏 it's much appreciated
@getmmg
@getmmg 5 жыл бұрын
@@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.
@FilledStacks
@FilledStacks 5 жыл бұрын
@@getmmg You're very welcome man. It makes me happy to hear that my work is making an impact. Thanks for following along :)
@taiwo763
@taiwo763 3 жыл бұрын
i am still learning from you even more than a year plus. you are just good
@FilledStacks
@FilledStacks 3 жыл бұрын
That's awesome!! Thank you for commenting :) I appreciate it.
@quikmath8071
@quikmath8071 5 жыл бұрын
Pretty advanced stuff. A good tutorial to learn from!
@FilledStacks
@FilledStacks 5 жыл бұрын
Thank you :)
@jonathan10543
@jonathan10543 5 жыл бұрын
Incredible stuff. You've brought solutions(Flutter hooks and sequences? sweet!) to my attention for problems I didn't even know I had! THANKS!
@FilledStacks
@FilledStacks 5 жыл бұрын
Haha awesome. I'm happy to have helped.
@easazade
@easazade 4 жыл бұрын
i watch this video whenever i'm fuzzy about what to do when wanna create an animation in my app. great job 👌
@FilledStacks
@FilledStacks 4 жыл бұрын
Me too haha 😁 Thank you, and thank you for watching :)
@gmc254quads6
@gmc254quads6 5 жыл бұрын
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.
@FilledStacks
@FilledStacks 5 жыл бұрын
Yeeaaah! That's good news. The less code we can write the better :) I'll definitely keep it coming.
@aamilsilawat3069
@aamilsilawat3069 5 жыл бұрын
You Involve all stuff in just one video...Great Keep Sharing :)
@FilledStacks
@FilledStacks 5 жыл бұрын
Thanks a lot man 😊 I'll definitely keep sharing.
@PurpleWarlock
@PurpleWarlock 5 жыл бұрын
Thank you very much. I'm new to flutter and was looking how to toggle a container with a button press.
@FilledStacks
@FilledStacks 5 жыл бұрын
You're welcome. I hope you found your answer :)
@MrVipulLal
@MrVipulLal Жыл бұрын
Well explained. Thanks
@FilledStacks
@FilledStacks Жыл бұрын
It's my pleasure. Happy to see the video is still helpful.
@d.rew.483
@d.rew.483 9 ай бұрын
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!
@FilledStacks
@FilledStacks 9 ай бұрын
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_23
@rijin_thomas_23 3 жыл бұрын
Great Stuff!! Subscribed already! I have a question, is this sequence animation similar to staggered animation?
@FilledStacks
@FilledStacks 3 жыл бұрын
Great! Thank you. Sequence can also do staggered animation but I don't think staggered animations can do the same thing as sequence animations.
@yavuzoncu4752
@yavuzoncu4752 3 жыл бұрын
Hi Dane, any advice for accessing the animation controller instance from model properly? A stream 🤔
@FilledStacks
@FilledStacks 3 жыл бұрын
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.
@mohammedfuta1402
@mohammedfuta1402 4 жыл бұрын
very helpful video. but i'm having one issue. SequenceAnimationBuilder can't be assigned to a SequenceAnimation type
@FilledStacks
@FilledStacks 4 жыл бұрын
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.
@muhammedsabir4628
@muhammedsabir4628 5 жыл бұрын
thanks hope to continue
@FilledStacks
@FilledStacks 5 жыл бұрын
I definitely will be. Thank you for watching
@matthewfrancis4897
@matthewfrancis4897 4 жыл бұрын
Great video!
@FilledStacks
@FilledStacks 4 жыл бұрын
Thank you! Much appreciated
@laujimmy8635
@laujimmy8635 4 жыл бұрын
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
@FilledStacks
@FilledStacks 4 жыл бұрын
Hi, it sounds like you're trying to use a const constructor in a place where you can't use a const constructor.
@laujimmy8635
@laujimmy8635 4 жыл бұрын
@@FilledStacks So I guess Tween(begin: 0, end: 200).animate(controller) cannot be used in this situation anymore ?
@FilledStacks
@FilledStacks 4 жыл бұрын
@@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
@laujimmy8635
@laujimmy8635 4 жыл бұрын
@@FilledStacks ah, I see. Yes, after removing the const before GrowingContainer, the error is gone. Thank you so much.
@FilledStacks
@FilledStacks 4 жыл бұрын
@@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.
@topgeargaming8679
@topgeargaming8679 4 жыл бұрын
Your thumbnails are as awesome as ur videos, so which software do u use to create them.
@FilledStacks
@FilledStacks 4 жыл бұрын
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.
@alien4ufo364
@alien4ufo364 5 жыл бұрын
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?
@FilledStacks
@FilledStacks 5 жыл бұрын
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-vb6pn
@MuhammadUsman-vb6pn 5 жыл бұрын
First like then start watching your video
@FilledStacks
@FilledStacks 5 жыл бұрын
haha ☺️☺️🤩 🤩 Thank you kind sir
@mohamedgaber9500
@mohamedgaber9500 3 жыл бұрын
A value of type 'Listenable' can't be assigned to a variable of type 'Animation'.
@FilledStacks
@FilledStacks 3 жыл бұрын
Mmmm, maybe the api changed? I'd have to check when using the code.
@mohamedgaber9500
@mohamedgaber9500 3 жыл бұрын
@@FilledStacks i fixed it by add as Animation thanks for your effort keep going
@boolcode
@boolcode 5 жыл бұрын
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
@FilledStacks
@FilledStacks 5 жыл бұрын
Thanks. I make all my videos using Davinci resolve.
@rajdave9862
@rajdave9862 5 жыл бұрын
ommNS om namah shivay jay mahakal maro bholiyobabonath Bro please tell me from where u are learning this flutter and all stuff
@FilledStacks
@FilledStacks 5 жыл бұрын
From the documentation and the flutter code 😁
@Jerichozis
@Jerichozis 5 жыл бұрын
Thanks!
@FilledStacks
@FilledStacks 5 жыл бұрын
My pleasure :)
@robertmrobo8954
@robertmrobo8954 2 жыл бұрын
Going out of topic... are you a South African? you sound like an Afrikaans speaking coloured. :)
@FilledStacks
@FilledStacks 2 жыл бұрын
Hey hey, no worries. Yes I am. I am from Paarl, live in Cape Town :D
Dart Streams - Flutter in Focus
8:01
Flutter
Рет қаралды 262 М.
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН
Quando eu quero Sushi (sem desperdiçar) 🍣
00:26
Los Wagners
Рет қаралды 15 МЛН
Каха и дочка
00:28
К-Media
Рет қаралды 3,4 МЛН
Complex Animations in Flutter using Rive | Flare
15:44
FilledStacks
Рет қаралды 226 М.
A Beginners Guide to the Flutter Bottom Sheet | Tutorial
11:30
FilledStacks
Рет қаралды 22 М.
Flutter Unique Onboarding | Intermediate level
27:16
Fun with Flutter
Рет қаралды 16 М.
Flutter Flare Basics - Let's Build Giphy's Nav Menu
13:22
Fireship
Рет қаралды 181 М.
Top 10 Widgets every Flutter Developer should know!
17:17
RetroPortal Studio
Рет қаралды 283 М.
Top 12 Flutter Tips & Tricks
9:32
Fireship
Рет қаралды 272 М.
The Dome Paradox: A Loophole in Newton's Laws
22:59
Up and Atom
Рет қаралды 764 М.
The ONLY Reason I Use Flutter
2:53
FilledStacks
Рет қаралды 10 М.
Flutter: Staggered Animation | Enter Animation
10:31
Robert Brunhage
Рет қаралды 16 М.
СИНИЙ ИНЕЙ УЖЕ ВЫШЕЛ!❄️
01:01
DO$HIK
Рет қаралды 3,3 МЛН