본문 바로가기

UI32

Flutter 플러터 BottomNavigationBar는 세 개 이상의 항목으로 작동하지 않습니다., Flutter BottomNavigationBar not working with more than three items 질문 Flutter (0.6)에서 BottomNavigationBar에 문제가 있습니다. 자식으로 3개 이상의 BottomNavigationBarItems를 추가하면, 바의 버튼이 흰색 아이콘으로 꼬여 나옵니다. 3개 이하의 항목만 사용하면 모든 것이 정상입니다. 여기에는 바를 깨뜨리는 위젯 코드가 있습니다: bottomNavigationBar: BottomNavigationBar( currentIndex: 0, iconSize: 20.0, items: [ BottomNavigationBarItem( title: Text('Home'), icon: Icon(Icons.accessibility)), BottomNavigationBarItem( title: Text('Preise'), icon: Icon(I.. 2023. 6. 18.
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.
Flutter - Container onPressed? 플러터 - 컨테이너 onPressed?, Flutter - Container onPressed? 질문 나는 이 컨테이너를 가지고 있습니다: new Container( width: 500.0, padding: new EdgeInsets.fromLTRB(20.0, 40.0, 20.0, 40.0), color: Colors.green, child: new Column( children: [ new Text("Ableitungen"), ] ), ), 사용자가 Container를 클릭하면 IconButton과 같은 방식으로 onPressed() 메서드가 실행되기를 원합니다. Container로 이러한 동작을 어떻게 구현할 수 있을까요? 답변 다음과 같이 GestureDetector 위젯을 사용할 수 있습니다: new GestureDetector( onTap: (){ print("Container clicke.. 2023. 6. 14.
Flutter flutter - minHeight에서 시작하여 maxHeight까지 성장하는 상자를 만드는 올바른 방법, flutter - correct way to create a box that starts at minHeight, grows to maxHeight 질문 나는 사용자가 콘텐츠를 추가하는 동안 콘텐츠가 커지면 최소 크기에서 시작하여 최대 크기까지 성장하고 멈추도록하려는 컨테이너가 있습니다. 이 경우 올바른 위젯은 다음과 같은 ConstrainedBox입니다: new ConstrainedBox( constraints: new BoxConstraints( minHeight: 35.0, maxHeight: 60.0, ), child: ...grow content를 가진 자식(기본 높이 25.0)... ), 그러나이 방법은 박스를 maxHeight에서 시작합니다. hasBoundedHeight를 사용해보려고했지만 올바른 구문을 구성하거나 문서에서 예제를 찾을 수 없습니다. 설명 된대로 상자를 작동하는 가장 좋은 방법은 무엇인가요? 답변 "Starts from.. 2023. 6. 1.