Flutter GridView.Builder의 자식들에게 높이를 주는 방법은 무엇인가요?, flutter how to give height to the childrens of GridView.Builder
질문 나는 gridview.builder의 자식에게 높이를 주려고 시도하고 있지만, 받아들이지 않고 있습니다. 컨테이너를 사용하여 시도했지만 작동하지 않습니다... 도와주세요 GridView.builder( gridDelegate: SliverGridDelegateWithFixedCrossAxisCount( crossAxisCount: 2, ), itemCount: snapshot.data.length, itemBuilder: (BuildContext context, int index) { return Container( height: 280.0, child: Column( children: [ Padding( padding: EdgeInsets.fromLTRB(10.0, 10.0, 10.0, 10.0)..
2023. 12. 11.
Flutter 컨테이너 위젯 내부에는 테두리 반경이 적용되지 않습니다., border radius not apply inside container widget
질문 자식 Container 내부에는 테두리 반경이 적용되지 않습니다. SizedBox 및 Stack 위젯을 사용해 보았지만, 컨테이너 내부에 테두리가 필요합니다. Scaffold( appBar: AppBar( title: new Text("ListView"), ), body: Center( child: Padding( padding: EdgeInsets.all(15.0), child: Container( decoration: BoxDecoration( borderRadius: BorderRadius.circular(15.0), border: Border.all( color: Colors.green, width: 2.0 ) ), child: Container( color: Colors.red, ) ), ..
2023. 10. 3.