-
Http Networking in Flutter
http – Single package for Cross-platform
-
WebSocket Networking in Flutter
web_socket_channel – The package provides a WebSocketChannel that allows you to both listen for messages from the server and push messages to the server.
-
Drawing in Flutter
In Flutter, you can use the CustomPaint and CustomPainter classes to draw to the canvas. CustomPainter subclasses must implement the paint() and shouldRepaint() methods. It’s should be passes to CustomPaint’s as a painter parameter.
-
Animations in Flutter
Well-designed animations make a UI feel more intuitive, contribute to the slick look and feel of a polished app, and improve the user experience. Most of the inbuild animation build on “Animation<T> class” Some of the Implementation are: –
-
Exception handling in Flutter
All errors caught by Flutter are routed to the FlutterError.onError handler. Which can be use at App/Root widget level. Errors that don’t occur within Flutter’s callbacks can’t be caught by the flutter framework, but still, we can handle them by setting up an error handler on the PlatformDispatcher. for more details read official documentation –…
