본문 바로가기

container3.3

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.
Flutter 플러터에서 컨테이너에 투명도를 적용하는 방법은 어떻게 하나요?, How to put opacity for container in flutter 질문 투명도를 적용하려면 16진수 색상 코드를 포함하는 컨테이너에 어떻게 할 수 있을까요? 다음은 현재 코드입니다: final body = Container( width: MediaQuery.of(context).size.width, margin: const EdgeInsets.only(left: 40.0, right: 40.0), padding: EdgeInsets.all(28.0), decoration: new BoxDecoration( color: const Color(0xFF0E3311),//여기에 투명도를 추가하고 싶습니다. border: new Border.all(color: Colors.black54, ), borderRadius: new BorderRadius.only( topLeft: c.. 2023. 9. 24.