摘要:
For example we have a 'useState' function, which takes a state and a function to update the state: const useState = (state, setState) => { const newSt 阅读全文
摘要:
Basic navigation by using 'Navigator.push' & 'Navigator.pop()', for example, we have two screen, screen1 and screen2, we want to navigate between two 阅读全文
摘要:
For example, we want to have to button, looks similar to FloatingActionButton: But in the doc, it says to it is recommend to have only one floatingAct 阅读全文
摘要:
Most websites are quite static and adding some animations/transitions can improve the user experience by a lot. In this lesson we're going to learn ho 阅读全文
摘要:
The postshows you how to use the null coalescing operator (??) instead of logical or (||) to set default values in TypeScript 3.7 to prevent expected 阅读全文
摘要:
TypeScript 3.7 adds support for optional chaining. This lesson shows you how to use it in your code to handle properties that can be null or undefined 阅读全文