본문 바로가기

Flutter6.2

Flutter 컬럼 안에 플러터 그리드뷰. 어떤 해결책이 있을까요..?, Flutter Gridview in Column. What's solution..? 질문 나는 그리드뷰와 컬럼에 문제가 있습니다. 이 경우에, 나는 그리드뷰의 위쪽에 이미지를 넣고 싶습니다. 해결책을 주세요.. return new Container( child: new Column( children: [ new Container( child: new Image.asset( "assets/promo.png", fit: BoxFit.cover, ), ), new Container( child: new GridView.count( crossAxisCount: 2, childAspectRatio: (itemWidth / itemHeight), controller: new ScrollController(keepScrollOffset: false), shrinkWrap: true, scrollDi.. 2023. 9. 28.
Flutter 컬럼의 나머지 공간을 위젯으로 채우는 방법, How to make a widget fill remaining space in a Column 질문 Android에서는 다음과 같이 할 수 있습니다. TextView의 크기에 따라 ImageView가 가능한 한 많은 공간을 차지하도록 설정할 수 있습니다. Flutter에서는 어떻게 이를 구현할 수 있을까요? Datetime(녹색)이 가능한 한 많은 공간을 차지하도록 설정해야 한다고 가정합니다. new Column( children: [ new Text('Title', style: new TextStyle(fontWeight: FontWeight.bold) ), new Text('Datetime', style: new TextStyle(color: Colors.grey) ), ], ) 답변 100% 확실하지는 않지만 아마도 이 말씀하시는 건 이거겠지요. Expanded 위젯은 사용 가능한 공간까지 .. 2023. 8. 14.