Building a Front-end Form Workflow that Sends Data to Google Sheets
Most times forms are created to collect data, and sometimes this data has to be shared across teams. Submitting this data to a database is the normal convention, which can sometimes make it difficult to further share. However, using google app script api, we can successfully append form data into google sheets. This is great because it helps non-technical teams access and share data among themselves without much hassle. In this article, I’ll be going over how to send data from your an HTML form to a google sheet where it can be further used....
Using GitHub Codespaces for Flutter Development
If you are anything like me, you wouldn’t like having to always open VS code whenever you want to try out a new feature or run a simple code snippet. For simple things like these, using a web-based code editor is quicker and easier. There are many web-based code editors out there with great support for most modern programming languages and frameworks, but the number of these web-based editors that provide great support for Flutter are few....
Creating a Three-State Switch UI Element: A Step-by-Step Tutorial
In this tutorial, I will be showing you how to build a switch in JavaScript with three states. Most times, the switches we use in frontend development are toggle switches, having just two states: ON and OFF. However, the other day, while I was browsing the Frontend Mentor website, searching for some frontend development challenges to work on, I came across this calculator challenge, and working on this challenge required building a UI switch component with three states....