사례 모서리가 둥근 사각형을 만들려면 클리핑 사각형을 적용하는 대신 많은 위젯 클래스에서 제공하는 borderRadius 속성을 사용하는 것이 좋습니다. Bad ClipRRect( borderRadius: BorderRadius.circular(8.0), child: Image.network( "path to your image", height: 150.0, width: 100.0, ), ) Good Container( width: 48.0, height: 48.0, decoration: new BoxDecoration( shape: BoxShape.circle, image: new DecorationImage( fit: BoxFit.fill, image: NetworkImage("path to your image") ) ) )...
#
border
#
clip
#
cliprrect
#
flutter
#
performace
#
radius
#
성능
#
퍼포먼스