For someone who has just started doing TDD, this was really helpful. I noticed you did a live stream with Flutter 1.22 live learning. Could I request a video idea? Maybe a video on the new Navigator 2.,0 API since I am having a hard time understanding it. Another great video would be a rundown of all you learnt in and since that live stream. I hope to see more videos and thank you for making the awesome content.
@FlutterExplained4 жыл бұрын
Hi Parkar, that is a fantastic idea and I work already on a Navigator 2.0 video. I hope I can release it soon!
@steevecabrel.spreeloop3 жыл бұрын
Great video for starters on flutter widget test.
@dishajain3733 жыл бұрын
What if there are two icon buttons? How to differentiate between them?
@FlutterExplained3 жыл бұрын
You can set for one of the buttons a id and find it by id, another solution is to find unique attributes of the button like parents etc. the find method is very versatile and should be able to help you in any case. I would recommend you to check the Flutter Project for amazing test examples. github.com/flutter/flutter/tree/master/packages/flutter/test
@leventkantaroglu78924 жыл бұрын
I couldn't access the codes of Scrolling Widget which mentioned in the video. Could you share?
@FlutterExplained4 жыл бұрын
Thank you for letting me know, I had some troubles with the repository and cannot find it either, I will recreate the repository and send you the link asap :)
@leventkantaroglu78924 жыл бұрын
@@FlutterExplained Thank you ver much 🤗
@DanaLinhartova1463 жыл бұрын
@@FlutterExplained can you send me the link to? I can't find it. thanks
@TheNightcrawler993 ай бұрын
@@FlutterExplained I cannot find the app used in the demonstration. Could you please share its location? 🙏🏾
@harithcodes3417 ай бұрын
Arrange Act Assert - AAA
@pradeep4224 жыл бұрын
widget testing is in black hole inside flutter universe...Of all example flutter projects in github and youtube video tuts I only see 0.01% content for widget test topic don't know why...
@FlutterExplained4 жыл бұрын
Yeah but the problem is that there are billions of possibilities. But if you want to learn more about different widget tests I highly recommend you take a look into the Flutter Repository. They write tons of them and many of them are just amazing.
@pradeep4224 жыл бұрын
@@FlutterExplained r they inside flutter samples or actual repo??
@FlutterExplained4 жыл бұрын
@@pradeep422 In the main repository: github.com/flutter/flutter/tree/master/packages/flutter/test
@pradeep4224 жыл бұрын
@@FlutterExplained oh god ty...
@FlutterExplained4 жыл бұрын
@@pradeep422 You are most welcome :)
@pr0hairesis2 жыл бұрын
thank you for the video. I came here to find how to test if my scrollbar appear or is hidden because I extend the time it is shown and want to keep this behavior. Is it possible to find the scrollbar? I tried to find the ScrollbarPainter widget but doesnt work.
@FlutterExplained2 жыл бұрын
Hi there, there are multiple ways I guess, one would be to add an key to the widget and look that one up. In general I would recommend you take a look into the Flutter Project. github.com/flutter/flutter/blob/master/packages/flutter/test/widgets/scrollbar_test.dart
@bktemplar3 жыл бұрын
Arrange Act Assert
@kamalCode4 жыл бұрын
Plz flutter app advaned testing tuotorials for develoer
@TheFirstStepIsToday3 жыл бұрын
fucking chad, thanks for this series
@FlutterExplained3 жыл бұрын
You are welcome :)
@codingwithbhs81453 жыл бұрын
act arange assert
@banglafactsteller67804 жыл бұрын
make a live session about testing
@FlutterExplained4 жыл бұрын
Sure sounds like a good plan :)
@thehumankid85774 жыл бұрын
@@FlutterExplained Hey, could you please make a video on my plugin? It's a basic plugin that makes writing dynamic UI easy in Flutter.