How to create a new ____ ?
List of elements in the app which might be needed to be added more of later on, write here only if there are few steps, else create a new page for it.
Auth method
- create a new script in src\core\auth and create an object with AuthMethod type
 - inside src\core\auth\utils.tsx:AuthMethodList add a key for your auth method
 - then add your object to methods
 - create a button in src\screens\login\index.tsx along side the other auth buttons we have right now, call signIn with your key in onPress
 
Tab
- create a key in TabParamList
 - show which icon to use in tabsIcon
 - add the screen component you want to show in TabType in 
src\screens 
New Icons
- duplicate a file in 
src\ui\iconsand rename the file and component accordingly - go to font awesome, search and select the icon you want to use
 - go into SVG tab and copy the code snipit there
 - replace the 
d,height,width,viewBoxproperties from the code snipit into the component you just created - change the color property as prefered
 - export the component in 
src\ui\icons\index.tsx - then use the component as you like, the new icon should now be displayed properly