본문 바로가기

Flex3

Flutter 확장 위젯은 Flex 위젯 내부에 배치되어야 합니다., Expanded widgets must be placed inside Flex widgets 질문 플러터를 처음 사용해봐서 아래 코드에 무슨 문제가 있는지 알려주실 수 있는 분이 계신가요 class GamePage extends StatelessWidget { int _row; int _column; GamePage(this._row,this._column); @override Widget build(BuildContext context) { return new Material( color: Colors.deepPurpleAccent, child:new Expanded( child:new GridView.count(crossAxisCount: _column,children: new List.generate(_row*_column, (index) { return new Center( child: .. 2023. 9. 7.
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.
flutter 플러터 - 텍스트 래핑 [중복], Flutter- wrapping text [duplicate] 질문 텍스트가 커짐에 따라 텍스트를 랩하려고합니다. 거의 모든 것으로 랩을 시도했지만 텍스트는 여전히 한 줄로 유지되며 화면에서 벗어납니다. 이를 어떻게 달성할 수 있는지 아시는 분 계십니까? 도움이 매우 감사합니다! Positioned( left: position.dx, top: position.dy, child: new Draggable( data: widget.index, onDragStarted: widget.setDragging, onDraggableCanceled: (velocity, offset) { setState(() { position = offset; widget.secondCallback(offset, widget.index); widget.endDragging(); }); }, c.. 2023. 5. 9.