본문 바로가기

overflow2

Flutter 플러터에서 축소되는 요소를 어떻게 애니메이션화할 수 있을까요?, How to Animate Collapsing Elements in Flutter 질문 사용자가 다른 위젯 (형제 또는 부모)을 탭 할 때 위젯을 확장하고 축소하려면 어떻게해야합니까? new Column( children: [ new header.IngridientHeader( new Icon( Icons.fiber_manual_record, color: AppColors.primaryColor ), '음성 트랙 1' ), new Grid() ], ) 사용자가 header.IngridientHeader를 탭 할 수 있도록하고 Grid 위젯은 토글되어야합니다 (표시되지 않으면 숨겨지고 그 반대도 마찬가지입니다). 나는 부트 스트랩에서 축소와 비슷한 작업을하려고합니다. getbootstrap.com/docs/4.0/components/collapse header.IngridientHead.. 2023. 9. 26.
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.