Skip to content

Instantly share code, notes, and snippets.

View Ryanlucass's full-sized avatar
📖
Focusing

Lucas Alves Ryanlucass

📖
Focusing
View GitHub Profile
when you need render a component and add countdown em your debounce functions, you need make this.
the react native reserve state
const debounceFunction = useCallback(
debounce(() => {
//call yor function
},300),[]
);
@Ryanlucass
Ryanlucass / Modal.js
Last active January 13, 2023 20:50
Modal Biometric - React Native
<Modal
visible={isBiometric}
transparent={false}
onRequestClose={()=> setIsBiometric(false)}
>
<Biometric
handleClosse={() => setIsBiometric(false)}
/>
</Modal>
@Ryanlucass
Ryanlucass / .gitignore
Last active February 10, 2022 22:26
gitignore .NET core | c# | visual studio
# on root path you can also add:
# dotnet new gitignore
## Ignore Visual Studio temporary files, build results, and
## files generated by popular Visual Studio add-ons.
##
## Get latest from https://github.com/github/gitignore/blob/master/VisualStudio.gitignore
# User-specific files
*.rsuser