Widget37 Flutter 플러터에서 열과 행 항목을 가운데 정렬하는 방법은 무엇인가요?, How to center column and row item in Flutter? 질문 나는 작은 통화 표를 가지고 있습니다. 그리드를 사용하지 않았습니다. 열과 행을 사용했습니다. 문제는 행에 있는 항목들이 아래의 엑셀 예시처럼 가운데에 표시되지 않습니다. 항목들을 가운데에 표시하기 위해 어떤 위젯을 사용해야 할까요? 예시 코드: return new Center( child: new Column( crossAxisAlignment: CrossAxisAlignment.center, children: [ new Row( mainAxisAlignment: MainAxisAlignment.center, children: [ new Padding( padding: const EdgeInsets.fromLTRB(15.0, 5.0, 15.0, 5.0), child: new Icon( Icons... 2023. 9. 24. Flutter 다른 예외가 발생했습니다: 'MyApp' 타입은 'StatelessWidget' 타입의 하위 타입이 아닙니다., Another exception was thrown: type 'MyApp' is not a subtype of type 'StatelessWidget' 질문 나는 방금 Flutter를 사용하기 시작했고 코드를 실행하는 동안이 문제가 발생했습니다. "Another exception was thrown: type 'MyApp' is not a subtype of type 'StatelessWidget'"라는 오류가 발생합니다. 흥미로운 점은 내 코드에는 'StatelessWidget'조차도 없다는 것입니다. import 'package:flutter/material.dart'; void main() { runApp(MyApp()); } class MyApp extends StatefulWidget { @override State createState() { // TODO: implement createState return _MyAppState(); } }.. 2023. 9. 22. Flutter 'List<widget>' 요소 유형은 'Widget' 리스트 유형에 할당할 수 없습니다., the element type 'List<widget>' can't be assigned to the list type 'Widget' 질문 데이터를 그리드뷰에 for 루프를 사용하여 추가하려고 시도하고 있지만 오류가 발생합니다. 다음은 컴포넌트의 코드입니다. return new GridView.count( crossAxisCount: 2, padding: const EdgeInsets.all(10.0), crossAxisSpacing: 10.0, mainAxisSpacing: 10.0, children: [getList()], ); getList() 코드 List getList() { List childs = []; for (var i = 0; i < 10; i++) { childs.add(new ListItem('abcd ' + $i)); } return childs; } 하지만 컴파일 시간 오류가 표시됩니다. 요소 유형 'List'.. 2023. 9. 21. Flutter에서 Row()의 배경색을 설정하는 방법은 무엇인가요?, How to set the background color of a Row() in Flutter? 질문 I'm trying to set up a background color for a Row() widget, but Row itself has no background color or color attribute. I've been able to set the background color of a container to grey, right before the purple-backgrounded text, but the text itself does not fill the background completely and the following spacer does not take any color at all. So how can I have the Row background set to the ".. 2023. 9. 21. 이전 1 2 3 4 5 6 ··· 10 다음