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.