TRTushar Rupaniintushar-rupani.hashnode.dev·Jan 18, 2023 · 3 min readUnderstanding useRef() in ReactWhat is useRef()? First of all, let's compare useRef() with useState(). The main difference between them is, a change in useState() variable will always cause a re-render, whereas, a change in useRef() won't cause the re-render. People use it for acc...00
TRTushar Rupaniintushar-rupani.hashnode.dev·Nov 6, 2022 · 2 min readGeolocationWhat is Geolocation Geolocation means, finding the current position of the user. This information can be used in several fields such as; Geotagging Photographs Displaying Maps Finding Directions Applications like Zomato needs them, according to the ...00
TRTushar Rupaniintushar-rupani.hashnode.dev·Nov 6, 2022 · 1 min readCursor, LoaderManager and CursorLoaderWhat is Cursor? Cursor is an scrollable result set, which contains results provided by the SELECT query. Normally, when you make request for retrieving the data from the database using query or rawQuery the database returns the data in the form of Cu...00
TRTushar Rupaniintushar-rupani.hashnode.dev·Nov 6, 2022 · 3 min readNotes - AndroidWhat is a Context? Context is used to provide information about application environment, and is used to perform application level tasks. Such as; Launching Activity, Broadcasting and Receiving intents and etc. Context are used when our code needs to ...00
TRTushar Rupaniintushar-rupani.hashnode.dev·Nov 5, 2022 · 2 min readContent ProviderWhat is Content Provider? When one application, wants to use the data provided by the other application then Content Provider comes into the picture. Content Provider, provides data of one application to others on request. Such requests are handled...00