반응형
질문
위 사진과 같이 위젯에 그림자를 추가하는 방법은 무엇인가요?
이가 내 현재 위젯 코드입니다.
답변
BoxShadow과 BoxDecoration을 확인하세요.
Container
는 원래 게시한 코드를 기반으로 BoxDecoration
을 취할 수 있으며, 이는 boxShadow
를 취합니다.
return Container(
margin: EdgeInsets.only(left: 30, top: 100, right: 30, bottom: 50),
height: double.infinity,
width: double.infinity,
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.only(
topLeft: Radius.circular(10),
topRight: Radius.circular(10),
bottomLeft: Radius.circular(10),
bottomRight: Radius.circular(10)
),
boxShadow: [
BoxShadow(
color: Colors.grey.withOpacity(0.5),
spreadRadius: 5,
blurRadius: 7,
offset: Offset(0, 3), // changes position of shadow
),
],
),
)
반응형
댓글