Row18 Flutter 확장 위젯은 Flex 위젯 내부에 배치되어야 합니다., Expanded widgets must be placed inside Flex widgets 질문 플러터를 처음 사용해봐서 아래 코드에 무슨 문제가 있는지 알려주실 수 있는 분이 계신가요 class GamePage extends StatelessWidget { int _row; int _column; GamePage(this._row,this._column); @override Widget build(BuildContext context) { return new Material( color: Colors.deepPurpleAccent, child:new Expanded( child:new GridView.count(crossAxisCount: _column,children: new List.generate(_row*_column, (index) { return new Center( child: .. 2023. 9. 7. Python 데이터프레임의 셀에서 값은 어떻게 가져올 수 있나요?, How can I get a value from a cell of a dataframe? 질문 나는 데이터프레임에서 정확히 한 행을 추출하는 조건을 만들었습니다: d2 = df[(df['l_ext']==l_ext) & (df['item']==item) & (df['wn']==wn) & (df['wd']==1)] 이제 특정 열에서 값을 가져오고 싶습니다: val = d2['col_name'] 하지만 결과로는 한 행과 한 열(즉, 한 셀)이 포함된 데이터프레임이 나옵니다. 이는 내가 필요한 것이 아닙니다. 나는 하나의 값(하나의 부동소수점 숫자)이 필요합니다. 판다스에서 어떻게 할 수 있을까요? 답변 만약 하나의 행만 있는 DataFrame이 있다면, iloc을 사용하여 첫 번째 (유일한) 행을 Series로 접근한 다음, 열 이름을 사용하여 값을 얻을 수 있습니다: In [3]: sub_df .. 2023. 7. 26. Flutter 플러터에서 열 너비 설정하기, Set column width in flutter 질문 I need to set a Column width in flutter, I have to do a layout with 3 sections, one should be 20% of the screen, the other one 60% and the last one 20%. I know that those 3 columns should be into a row, but I don't know a way to set the size, when I do that, the 3 columns take the same size. I will appreciate any feedback. 답변 크기를 하드 코딩하는 대신 Flex를 사용하는 것을 제안합니다. Row( children: [ Expanded( flex.. 2023. 6. 24. Flutter 플러터 - 수직 분할자 및 수평 분할자, Flutter - Vertical Divider and Horizontal Divider 질문 In Flutter, is there an option to draw a vertical lines between components as in the image. Flutter에서 이미지와 같이 구성 요소 사이에 수직 선을 그릴 수 있는 옵션이 있나요? 답변 내가 아는 한 그렇지 않다. 그러나, 만약 Flutter의 Divider 소스를 보면, 단순히 하나의 (하단) 테두리가 있는 SizedBox일 뿐이므로 쉽게 만들 수 있습니다. 당신은 같은 방식으로 크기를 바꿀 수 있습니다. 업데이트 (2018년 10월 4일): VerticalDivider 구현이 Flutter 팀에 의해 병합되었습니다. 문서를 확인해보세요. 그러나 사용하기 매우 간단합니다. 단순히 한 행의 두 항목 사이에 놓기만 하면 됩니다.. 2023. 6. 18. 이전 1 2 3 4 5 다음