Figma and Its Benefits for Backend Developers

Figma and Its Benefits for Backend Developers

Daily short news for you
  • Here! A question that I've been wondering about for ages, and until yesterday, everything was finally clarified.

    Normally, people use height: 100vh to set the height equal to the viewport of the screen. On computers, there's no issue, and even simulating the size of a smartphone works fine. But when opened on a phone, height: 100vh always exceeds the viewport. Huh!? What's going on???

    The explanation for this is that mobile devices have a different way of calculating the viewport compared to computers. It is often interfered with or affected by the address bar and navigation bar of the platform you are using. Therefore, if you want 100vh on mobile to truly equal the viewport, you need to take an additional step to reset the viewport.

    It's easy, first, you need to create a CSS variable --vh right in the script tag at the top of the page.

    function updateViewportHeight() { const viewportHeight = globalThis.innerHeight; document.documentElement.style.setProperty('--vh', `${viewportHeight * 0.01}px`); } updateViewportHeight(); window.addEventListener('resize', updateViewportHeight);

    Then instead of using height: 100vh, change it to height: calc(var(--vh, 1vh) * 100). And that's it.

    » Read more
  • Nowadays, how much memory will 1 million (1M) concurrent tasks consume? That is the question posed by hez2010, and he decided to find the answer by experimenting with a simple program in various programming languages: How Much Memory Do You Need in 2024 to Run 1 Million Concurrent Tasks?

    To summarize, Rust remains unbeatable, but the second position surprised me 😳

    » Read more
  • Is something coming? 😱🥶

    » Read more

The Problem

If you are a developer in product development, you are probably no stranger to feature design prototypes on the Figma tool. Through these visual images, we can communicate and work more efficiently with each other.

Creating such design prototypes requires designers to have a lot of knowledge about graphics and UI/UX skills. As a developer, I have to admit that Figma was initially challenging for me to use. But because I discovered the potential that Figma brings, I had to motivate myself to learn how to use it.

So, as a developer, why do I need Figma? In today's article, I would like to share my perspective on why developers should know how to use Figma.

Why Use Figma

Why Use Figma

Firstly, if you don't know what Figma is used for, it is a vector graphics editing and prototyping software. Figma focuses on supporting UI/UX design work and real-time collaboration.

The ability to design UI/UX is what I need to create new interface designs for my blog. In the past, I tried various methods such as sketching on paper, using online wireframe tools... but these methods only partially met my needs, and they also revealed their limitations. For example, sketching on paper is fast, but it is difficult to edit, and it is not as complete and detailed as computer graphics. Wireframing only helps me create layouts without detailed graphics.

Figma is a tool that helps me overcome these limitations. I can create wireframes and make quick edits. I can even create a complete design for a page on my blog. After I am satisfied, I send them to a few people for feedback. If everything is fine, I implement the design into HTML code.

Donate to Hoai

Currently, my skill in using Figma is at a basic level. The knowledge I have gained is mainly from reading the documentation on Figma's website and watching their tutorial videos on Youtube.

Match App

Why Should You Know How to Use Figma

There are several benefits that I have gained from learning to use the Figma tool.

Using Figma indirectly exposes you to thousands of design templates available on this platform. These are design templates shared by users on this platform. There are detailed design templates as well as component templates that we can reuse. This helps save time and effort in searching for new design inspiration. Moreover, if you can't create a design, you can use the available component templates.

Visualize your ideas quickly through design prototypes, evaluate, and make adjustments until you are satisfied. Instead of imagining in your head, you can now bring it to life on Figma. You can quickly see your results and use them as motivation for further development.

Through Figma, we can easily share our designs with others for them to view or provide feedback. Designs may look "perfect" in the eyes of the creator, but sometimes external observers quickly notice "details" that we didn't expect or overlooked. This helps you quickly identify and make improvements for a more refined design.

In addition to creating web/mobile design prototypes, Figma can also do other tasks, such as designing logos and icons. If you learn how to design, you can freely create products with your preferred style without depending on anyone else.

Using Figma requires knowledge of UI/UX, and if you don't know much about it, Figma forces you to develop your UI/UX skills and aesthetic sense by constantly practicing and exploring. Continuously updating yourself with new design trends keeps the user experience of the products you develop up to date.

Conclusion

In this article, I have presented the reasons why a developer like me chose to learn how to use Figma. For you or others, Figma may bring even more benefits. I hope that after reading this article, developers who are on the way to conquering Figma or professional designers can share their experiences of learning and using Figma with me and everyone else!

Premium
Hello

The secret stack of Blog

As a developer, are you curious about the technology secrets or the technical debts of this blog? All secrets will be revealed in the article below. What are you waiting for, click now!

As a developer, are you curious about the technology secrets or the technical debts of this blog? All secrets will be revealed in the article below. What are you waiting for, click now!

View all

Subscribe to receive new article notifications

or
* The summary newsletter is sent every 1-2 weeks, cancel anytime.
Author

Hello, my name is Hoai - a developer who tells stories through writing ✍️ and creating products 🚀. With many years of programming experience, I have contributed to various products that bring value to users at my workplace as well as to myself. My hobbies include reading, writing, and researching... I created this blog with the mission of delivering quality articles to the readers of 2coffee.dev.Follow me through these channels LinkedIn, Facebook, Instagram, Telegram.

Did you find this article helpful?
NoYes

Comments (0)

Leave a comment...