본문 바로가기

1.344

Flutter 플러터: 버튼을 부모 요소의 크기로 확장하는 방법은 무엇인가요?, Flutter: How to make a button expand to the size of its parent? 질문 I am trying to create square buttons, but Expanded doesn't seem to work the same as it does with containers. Take the following code for example new Expanded( flex: 2, child: new Column( children: [ new Expanded( child:new Row( children: [ new Expanded(child: new MaterialButton(...)), new Expanded(child: new MaterialButton(....)), new Expanded(child: new Container(color: Colors.red)), new Exp.. 2023. 10. 1.
Flutter 버전 17.0.0에서 보고된 심각한 문제가 있습니다. Google Play 경고 [닫힘], Reported critical issues with version 17.0.0. google play warning [closed] 질문 I got this warning when I was publishing my app The developer of play-services-safetynet (com.google.android.gms:play-services-safetynet) has reported critical issues with version 17.0.0. Consider upgrading before publishing a new release. Here's what the SDK developer told us: The SafetyNet Attestation API is being discontinued and replaced by the new Play Integrity API. Begin migration as s.. 2023. 10. 1.
Flutter 플러터에서 텍스트에 그림자를 추가하는 방법은 무엇인가요?, How to add shadow to the text in flutter? 질문 TextStyle에서 그림자 옵션을 찾아보았지만 찾을 수 없었습니다. 그래서 질문합니다: 플러터에서 텍스트에 그림자를 추가하는 방법은 무엇인가요? 가능한가요? 예시: new Text( "asd" style: new TextStyle( //그림자 추가? )); 답변 텍스트 그림자는 TextStyle의 속성으로 이 커밋부터 사용 가능합니다. 텍스트 그림자를 활성화하려면 Flutter의 최신 버전($ flutter upgrade)을 사용하고 TextStyle.shadows에 List를 제공하십시오: import 'dart:ui'; ... Text( '안녕하세요, 세계!', style: TextStyle( shadows: [ Shadow( offset: Offset(10.0, 10.0), blurRadiu.. 2023. 10. 1.
Flutter 다트에서 목록을 펼치는 방법은 어떻게 하나요?, How to spread a list in dart 질문 자바스크립트에서는 전개 연산자를 사용합니다: 이제 플러터에서 같은 문제가 발생합니다: Widget build(BuildContext context) { return Column( children: [ MyHeader(), _buildListOfWidgetForBody(), // 2023. 9. 29.