FLUTTER203 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. flutter 플러터에서 위젯에 그림자를 추가하는 방법은 무엇인가요?, How can I add shadow to the widget in flutter? 질문 위 사진과 같이 위젯에 그림자를 추가하는 방법은 무엇인가요? 이가 내 현재 위젯 코드입니다. 답변 BoxShadow과 BoxDecoration을 확인하세요. Container는 원래 게시한 코드를 기반으로 BoxDecoration을 취할 수 있으며, 이는 boxShadow를 취합니다. return Container( margin: EdgeInsets.only(left: 30, top: 100, right: 30, bottom: 50), height: double.infinity, width: double.infinity, decoration: BoxDecoration( color: Colors.white, borderRadius: BorderRadius.only( topLeft: Radius.cir.. 2023. 5. 9. flutter 텍스트 필드에 초기값을 제공하는 방법은 무엇인가요?, How do I supply an initial value to a text field? 질문 I'd like to supply an initial value to a text field and redraw it with an empty value to clear the text. What's the best approach to do that with Flutter's APIs? 답변 당신은 TextField 대신 TextFormField을 사용하고 initialValue 속성을 사용할 수 있습니다. 예를 들어 TextFormField(initialValue: "I am smart") 2023. 5. 8. Flutter에서 Column에 ListView를 추가하는 방법은 무엇인가요?, How to add a ListView to a Column in Flutter? 질문 Flutter 앱을 위한 간단한 로그인 페이지를 만들려고합니다. TextFields와 로그인 / 가입 버튼을 성공적으로 만들었습니다. 가로 ListView를 추가하려고합니다. 코드를 실행하면 요소가 사라지지만 ListView없이 수행하면 다시 정상입니다. 올바르게 어떻게 할 수 있을까요? return new MaterialApp( home: new Scaffold( appBar: new AppBar( title: new Text("로그인 / 가입"), ), body: new Container( child: new Center( child: new Column( mainAxisAlignment: MainAxisAlignment.center, children: [ new TextField( decora.. 2023. 5. 8. 이전 1 ··· 44 45 46 47 48 49 50 51 다음