DODavid Orinamehinfacto.hashnode.dev·Jun 12, 2021 · 2 min readWhat `keyof typeof` means in TypescriptWhen I started learning about Typescript, I kept on seeing keyof typeof which was confusing for me to grasp at that time. This article will provide an understanding of this concept to leverage for Typescript newbies and people that want to understand...00
DODavid Orinamehinfacto.hashnode.dev·Apr 10, 2021 · 4 min readAuto-logout user after inactivity - React NativeSome mobile applications, like financial apps have sensitive data in them. Leaving such data exposed even when the users are not active pose a security flaw as hackers can gain access to the phone and steal the sensitive data. To mitigate this, it is...03FCJ
DODavid Orinamehinfacto.hashnode.dev·Jan 5, 2021 · 7 min readBuild a Task Management Application with React-Beautiful-DnD - Part 2This is the concluding part of this tutorial. In Part 1, we discussed, in details, the principles and architectural design of the React-beautiful-dnd and built a demo for a single column of items. In this final part, we will extend our demo for mul...00
DODavid Orinamehinfacto.hashnode.dev·Jan 3, 2021 · 13 min readBuild a Task Management Application with React-Beautiful-DnD - Part 1Task management applications with drag and drop features like Trello and Jira are aplenty on the web. Building such applications with the custom HTML drag and drop API can be a difficult task to achieve. For a framework like React, several packag...00
DODavid Orinamehinfacto.hashnode.dev·Jan 2, 2021 · 4 min readGetting started with Parcel.jsThe major frontend frameworks(libraries) like Angular, React, Vuejs are pre-configured with a bundler( webpack ) which helps build and bundle your assets/files into a single file and served in the browser. When using vanilla javascript, you can also ...00