본문 바로가기

Flutter397

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 Firestore가 Android Studio에서 D8 오류를 발생시킵니다. 요청된 클래스를 하나의 dex 파일에 맞출 수 없습니다. (# methods: 71610 > 65536), Flutter Firestore causing D8: Cannot fit requested classes in a single dex fil.. 질문 저는 최신 버전의 안드로이드 스튜디오에서 Flutter 앱과 함께 firestore를 사용하려고 합니다. 저는 정확히 이 지침을 따랐습니다. https://www.youtube.com/watch?v=DqJ_KjFzL9I&list=PLjxrf2q8roU2HdJQDjJzOeO6J3FoFLWr2&index=9 저는 지난 주에 다른 앱에서 작동했던 것도 있습니다. 이제 pubspec.yaml을 업데이트하는 모든 단계를 완료한 후 새 앱을 실행하려고 하면 다음 오류가 발생합니다. 이 예에서는 여기에서 볼 수 있는 것 외에는 변경된 코드가 없는 새로운 플러터 카운터 앱에서 오류가 발생합니다. D8: Cannot fit requested classes in a single dex file (# methods: .. 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.