video https://www.bilibili.com/video/BV1aJ4m1n7FZ Preface Original text https://ducafecat.com/blog/migrating-from-willpopscope-to-pop… <img src=”https://ducafecat.oss-cn-beijing.aliyuncs.com/podcast/2024/04/425a394c101cf8c5a715304b00c71a78.png” alt=”PopScope” style=”width:33%;” /> Learn how to replace the deprecated WillPopScope with PopScope in Flutter 3.16, and learn […]
Month: December 2023
A brief discussion on the scheduling mechanism of Goroutine
1. What is Goroutine? In the Go language, each concurrent execution unit is called a goroutine. The opposite of concurrency is serial, that is, the […]
Improve speed and performance with React Native JSI
First published on public account front-end hybrid development , welcome to pay attention. As a cross-platform mobile app development framework, React Native needs to communicate with […]
Vue3 responsive source code analysis – ref + ReactiveEffect articles
In Vue3, because the reactive object created by reactive is implemented through Proxy, the incoming data cannot be the basic type, so the ref object is a […]
Flutter’s caching strategy
Preface Cache management is a very important thing in mobile applications. In this article, I’ll tell you how to set up policy caching in my […]
How to make useEffect support async…await?
This article is the sixth in a series of in-depth ahoos source code articles, which have been organized into document- address . I think it’s not bad, […]
ReactNative: Use react-native-mmkv to improve application performance
When working with React Native, you’ve most likely already used React AsyncStorageas a storage solution. For example, you can use AsyncStorageto store key-value pairs, such as your […]
Some knowledge related to thread pool
Basically all programmers have used thread pools directly or indirectly. It is a double-edged sword. If you use it well, you will get twice the […]
usePolymerAction
background With the popularity of React Hooks, component logic writing has become functional; logical function declarations and function code structures , as the logic increases in complexity, […]
In-depth understanding of Android garbage collection mechanism
In Android application development, memory management and garbage collection (GC) are crucial to application performance and stability. Understanding the GC mechanism helps us write more […]