Flutter (79): Http request library - dio

Flutter (79): Http request library - dio

79.1 Introducing DioAs mentioned in the previous section, directly using HttpClient to make network requests can be cumbersome, as many aspects require manual handling. When it comes to file uploads/d···
Time: Views:215
Flutter (71): Combination example TurnBox

Flutter (71): Combination example TurnBox

Implementing a TurnBox Component in FlutterWe have previously introduced the RotatedBox, which can rotate its child components, but it has two drawbacks: first, it can only rotate its child nodes in m···
Time: Views:203
Flutter (70): Combining existing components

Flutter (70): Combining existing components

Composing UI Components in FlutterIn Flutter, page UIs are typically composed of low-level components. When we need to encapsulate some common components, we should first consider whether we can achie···
Time: Views:194
Flutter (65): Hero Animation

Flutter (65): Hero Animation

65.1 Implementing Custom Hero AnimationFor example, we have a profile picture component that initially displays a small circular image. We want to implement a feature that allows users to click and vi···
Time: Views:188
Flutter (61): Notification

Flutter (61): Notification

Notifications are an important mechanism in Flutter. In the widget tree, each node can dispatch notifications, which propagate upward through the current node, allowing all parent nodes to listen to t···
Time: Views:219
Flutter (59): Gesture principles and gesture conflicts

Flutter (59): Gesture principles and gesture conflicts

59.1 Principles of Gesture RecognitionGesture recognition and handling occur during the event dispatch phase. GestureDetector is a StatelessWidget that contains RawGestureDetector. Let’s take a look ···
Time: Views:194
Flutter (57): Gesture Recognition

Flutter (57): Gesture Recognition

57.1 GestureDetectorThis section introduces the GestureDetector and GestureRecognizer used in Flutter to handle gestures, followed by a detailed discussion on gesture competition and conflict.GestureD···
Time: Views:235