Using MethodChannel in Flutter
Writing custom platform-specific code using method channel
May 10, 20216 min read2.7K

Search for a command to run...
Articles tagged with #app-development
Writing custom platform-specific code using method channel

I used to think everything on the screen gets redrawn by flutter pixel by pixel when setstate is called. That would actually result in performance issues if this was the case. In this article we are going to see what actually happens when build runs....

In flutter, a widget is either stateful or stateless. Widgets that change appearance are stateful. for example, it can change its appearance in response to events triggered by user interactions or when it receives data. Checkbox, Radio, Slider, InkWe...
