본문 바로가기

UI32

Flutter에서 함수를 통해 Elevated Button의 배경색을 어떻게 변경할 수 있나요?, How can I change the background color of Elevated Button in Flutter from function? 질문 저는 Flutter를 처음 사용하고 지난 주에 Flutter를 시작했습니다. 이제 간단한 Xylophone 애플리케이션을 만들고 싶습니다. UI를 성공적으로 만들었고 playSound(int soundNumber) 함수를 만들었지만, 이 함수를 호출하여 소리를 재생하려고 하면 다음 오류가 발생합니다. 다음과 같은 _TypeError가 발생하여 Body(dirty, state: _BodyState#051c2)를 빌드할 수 없습니다: '_MaterialStatePropertyAll' 유형은 'MaterialStateProperty?' 유형의 하위 유형이 아닙니다. 여기 playSound(int soundNumber) 함수에 대한 작성한 코드가 있습니다. void playSound(int soundNum.. 2023. 5. 13.
Flutter에서 원형 아이콘 버튼을 만드는 방법은 무엇인가요?, How to create a circle icon button in Flutter? 질문 어떻게 FloatingActionButton과 유사한 것을 만들 수 있나요? 답변 RawMaterialButton은 더 적합한 것 같습니다. RawMaterialButton( onPressed: () {}, elevation: 2.0, fillColor: Colors.white, child: Icon( Icons.pause, size: 35.0, ), padding: EdgeInsets.all(15.0), shape: CircleBorder(), ) 2023. 5. 13.
Flutter 플러터에서 두 항목을 극단에 맞추어 정렬 - 하나는 왼쪽에, 다른 하나는 오른쪽에, Flutter align two items on extremes - one on the left and one on the right 질문 저는 두 항목을 왼쪽과 오른쪽 끝에 맞추려고 노력하고 있습니다. 왼쪽에 맞춰진 하나의 행과 그 하위에 오른쪽에 맞춰진 하위 행이 있습니다. 그러나 하위 행이 부모에서 정렬 속성을 가져오는 것 같습니다. 이것은 내 코드입니다. var SettingsRow = new Row( mainAxisAlignment: MainAxisAlignment.end, crossAxisAlignment: CrossAxisAlignment.center, mainAxisSize: MainAxisSize.max, children: [ Text("Right",softWrap: true,), ], ); var nameRow = new Row( mainAxisAlignment: MainAxisAlignment.start, cross.. 2023. 5. 13.
Flutter CircularProgressIndicator의 색상을 변경하는 방법, How to change color of CircularProgressIndicator 질문 CircularProgressIndicator의 색상을 어떻게 변경할 수 있나요? 색상 값은 Animation의 인스턴스이지만, 애니메이션의 번거로움 없이 색상을 간단하게 변경할 수 있는 방법이 있을까요? 답변 이 방법이 제게는 작동했습니다: CircularProgressIndicator(valueColor: AlwaysStoppedAnimation(Colors.white)) 2023. 5. 10.