This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"name": "Tema iFood", | |
"description": "Tema personalizado com o logo do iFood", | |
"elements": [ | |
{ | |
"tag": "Apps - Ifood", | |
"stroke": "#9869eb", | |
"color": "#9869eb", | |
"icon": "https://logospng.org/wp-content/uploads/ifood.png" | |
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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),[] | |
); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<Modal | |
visible={isBiometric} | |
transparent={false} | |
onRequestClose={()=> setIsBiometric(false)} | |
> | |
<Biometric | |
handleClosse={() => setIsBiometric(false)} | |
/> | |
</Modal> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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 |