본문 바로가기

Layout12

Flutter 열 안에 스크롤 가능한 컨테이너, Scrollable Container inside a Column 질문 나는 몇 가지 다른 접근 방식을 시도해봤지만 이 작업을 제대로 수행할 수 없습니다. 원하는 레이아웃은 매우 간단하며 원시 Android에서 구현하기 매우 쉽습니다: 위쪽에 고정된 컨테이너 (파랑) 아래쪽에 스크롤 가능한 컨테이너 (빨강). ListView는 내 경우에는 작동하지 않습니다. SingleChildScrollView를 사용해보려고 했지만, Column 내에서 작동하지 않는 것 같습니다. 어떤 문제를 겪고 있는지 또는 올바른 위젯을 사용하지 않는 것인지 모르겠습니다... 내 결과: Scaffold( body: Column( children: [ Container( height: 100.0, color: Colors.blue, ), SingleChildScrollView( child: Con.. 2023. 10. 3.
Flutter 카드 안에 위젯 열을 꽉 둘러싸려면 어떻게 해야 하나요?, How can I tightly wrap a Column of widgets inside a Card? 질문 내 앱의 페이지 중 하나는 Card만 포함하고 있으며, 이 카드는 끝에 Column을 가지고 있으며, 그 끝에는 MaterialList가 있습니다. 리스트에 항목이 하나 또는 두 개만 있는 경우에도, 카드는 리스트 항목의 끝이 아닌 화면 하단까지 수직 공간을 확장합니다. Column 문서에 따르면 이는 일반적인 Column 동작("각 자식은 수직 제약이 없는 상태에서 유연성이 없거나 0인 가중치 요소(예: Expanded가 아닌 자식)를 배치합니다")이라고 합니다. 원하는 효과를 얻기 위해 리스트를 Flexible로 감싸려고 시도했지만 다음과 같은 오류가 발생했습니다: RenderFlex children have non-zero flex but incoming height constraints ar.. 2023. 9. 21.
Flutter 더 많은 옵션을 위해 스와이프 목록 항목 (플러터), Swipe List Item for more options (Flutter) 질문 Somedays ago I decided to choose an Ui for an app from Pinterest to practice building apps with Flutter but I'm stuck with the Slider which shows an "more" and "delete" button on horizontal drag. Picture on the right. I don't have enough knowledge to use Gestures combined with Animations to create something like this in flutter. Thats why I hope that someone of you can make an example for eve.. 2023. 7. 12.
Flutter 플러터에서 열 너비 설정하기, Set column width in flutter 질문 I need to set a Column width in flutter, I have to do a layout with 3 sections, one should be 20% of the screen, the other one 60% and the last one 20%. I know that those 3 columns should be into a row, but I don't know a way to set the size, when I do that, the 3 columns take the same size. I will appreciate any feedback. 답변 크기를 하드 코딩하는 대신 Flex를 사용하는 것을 제안합니다. Row( children: [ Expanded( flex.. 2023. 6. 24.