-
[Flutter] Container 둥글기 주기,그림자 효과 border,shadowFlutter 2022. 1. 12. 21:01728x90
안녕하세요. 욱쓰입니다. 밋밋한 Container에 둥글기와 그림자 효과를 적용해보고 알아보는 포스팅을 작성하겠습니다.
전체 둥글기
Container( width: 200, height: 200, decoration: BoxDecoration( color: Colors.teal, borderRadius: BorderRadius.circular(20), ), )
bottomRight에 둥글기 주기 (한쪽에만 둥글기 주기)
Container( width: 200, height: 200, decoration: BoxDecoration( color: Colors.teal, borderRadius: BorderRadius.only(bottomRight:Radius.circular(30)), ), )
bottomLeft와 Right에 둥글기 주기
Container( width: 200, height: 200, decoration: BoxDecoration( color: Colors.teal, borderRadius: BorderRadius.only( bottomRight: Radius.circular( 30, ), bottomLeft: Radius.circular(30), ), ), )
그림자 효과 주기
Container( width: 200, height: 200, decoration: BoxDecoration( color: Colors.teal, borderRadius: BorderRadius.circular(30), boxShadow: [ BoxShadow( color: Colors.grey.withOpacity(0.5), spreadRadius: 5, blurRadius: 7, offset: Offset(0, 3), // changes position of shadow ), ], ), )
그림자 하단에만 주기
Container( width: 200, height: 200, decoration: BoxDecoration( color: Colors.teal, borderRadius: BorderRadius.circular(30), boxShadow: [ BoxShadow( color: Colors.grey.withOpacity(0.7), spreadRadius: 0, blurRadius: 5.0, offset: Offset(0, 10), // changes position of shadow ), ], ), )
728x90'Flutter' 카테고리의 다른 글
[Flutter] 플러터 이미지 확대하기 InteractiveViewer를 활용하자. (0) 2022.02.19 [Flutter] [WARNING] Easy Localization: Localization key [XXX] not found 해결하기 (1) 2022.02.03 [Flutter] flutter 상태바(Status Bar) 숨기기 (0) 2022.01.10 [Flutter] 배달의 민족 댓글을 코딩으로? (dart class연습) (1) 2022.01.02 [Flutter] 공공데이터포털 api를 이용한 미세먼지 앱 예제 (0) 2022.01.01