Row 안에서 텍스트와 아이콘을 함께 쓰면 작은 화면에서 overflow가 발생한다.
Expanded로 남는 공간을 위임하면 대부분 해결된다.
RenderFlex overflow
—
to read
TechTinkerer's에서 더 알아보기
구독을 신청하면 최신 게시물을 이메일로 받아볼 수 있습니다.
-
Building a Basic C++ Calculator
[Tutorial] · 2026-01-19 06:38 UTC ## Building a Basic C++ Calculator #### 💡 TL;DR Learn to create a simple calculator in C++ that performs addition, subtraction, multiplication, and division of numbers. ### 📚 Learning Objectives **This tutorial will guide you through building a simple calculator using C++. We’ll cover fundamental programming concepts like input/output and…
-
Working with Files in Python: Reading and Writing Data
[Tutorial] · 2026-01-19 05:35 UTC ## Working with Files in Python: Reading and Writing Data #### 💡 TL;DR Python’s ‘with’ statement simplifies file operations, enabling efficient reading and writing of data from/to text files. ### 📚 Learning Objectives **This tutorial introduces file handling basics using Python, focusing on reading and writing data to/from text files.…
-
Understanding Data Structures: Lists, Tuples, and Dictionaries
[Tutorial] · 2026-01-19 04:33 UTC ## Understanding Data Structures: Lists, Tuples, and Dictionaries #### 💡 TL;DR Learn about the core concepts of lists, tuples, and dictionaries for efficient data storage in your programs. ### 📚 Learning Objectives **This tutorial explains lists, tuples, and dictionaries – fundamental data structures in programming. We’ll explore their properties, how…
-
6. Flutter에서 사용자 입력 및 폼 처리
사용자 입력을 처리하고, Flutter에서 Form을 사용해 유효성 검사를 구현하는 방법을 설명합니다.