본문 바로가기

width7

Python 내 브라우저에서 Jupyter/ipython 노트북의 셀 너비를 어떻게 늘릴 수 있을까요?, How do I increase the cell width of the Jupyter/ipython notebook in my browser? 질문 브라우저에서 IPython 노트북의 너비를 늘리고 싶습니다. 고해상도 화면을 사용하고 있으며, 이 추가 공간을 활용하기 위해 셀의 너비/크기를 확장하고 싶습니다. 감사합니다! 답변 기본 설정을 변경하지 않고 현재 작업 중인 노트북의 너비만 변경하려면 다음을 셀에 입력할 수 있습니다: from IPython.display import display, HTML display(HTML("")) 2023. 10. 7.
Flutter 수직 구분선이 표시되지 않습니다., Vertical Divider not showing 질문 저는 VerticalDivider 위젯을 사용하여 Row에서 항목을 분리하려고 합니다. 여기에서 전체 본문을 확인할 수 있습니다. Row: Row( children: [ Text('420 게시물', style: TextStyle(color: Color(0xff666666)),), VerticalDivider( thickness: 2, width: 20, color: Colors.black, ), Text('420 게시물', style: TextStyle(color: Color(0xff666666)),) ], ), 답변 당신의 Row를 IntrinsicHeight로 감싸세요, IntrinsicHeight( child: Row( children: [ Text('420 게시물', style: TextSt.. 2023. 9. 28.
Flutter 플러터에서 IconButton의 크기(높이와 너비)를 조정하는 방법은 무엇인가요?, How to resize (height and width) of an IconButton in Flutter 질문 Flutter에서 IconButton의 크기(높이와 너비)를 조절하는 방법은 무엇인가요? 기본적으로 기본 너비와 높이를 가지는 것 같습니다. 높이나 너비 속성이 없는 것 같습니다. new IconButton( padding: new EdgeInsets.all(0.0), color: themeData.primaryColor, icon: new Icon(Icons.clear, size: 18.0), onPressed: onDelete, ) 답변 다음과 같이 SizedBox를 사용하여 크기를 지정할 수 있습니다. SizedBox( height: 18.0, width: 18.0, child: IconButton( padding: EdgeInsets.all(0.0), color: themeData.prima.. 2023. 9. 22.
Flutter 텍스트 필드의 높이와 너비를 변경하는 방법은 무엇인가요?, How to change TextField's height and width? 질문 TextField의 width와 height를 어떻게 사용자 정의할 수 있나요? 답변 너비를 조정하려면 다음과 같이 TextField를 SizedBox 위젯으로 래핑 할 수 있습니다: const SizedBox( width: 100.0, child: TextField(), ) TextField의 높이에 대해 정확히 무엇을 원하는지 모르겠지만, TextStyle 위젯을 살펴볼 수 있습니다. 이 위젯을 사용하면 fontSize 및/또는 height를 조작할 수 있습니다. const SizedBox( width: 100.0, child: TextField( style: TextStyle(fontSize: 40.0, height: 2.0, color: Colors.black), ), ) TextStyle의.. 2023. 5. 15.