Flutter

[Flutter] Border Radius 상단에만 설정하기

유호야 2022. 12. 2. 06:19
반응형
Container(
	decoration: BoxDecoration(
    borderRadius: const BorderRadius.only(
    topLeft: Radius.circular(50),
    topRight: Radius.circular(50),
),

.only로 topLeft, topRight을 이용한다. 
topLeft, topRight 뒤에는 int 형식이 아닌 다시 Radius.circular(값) 형태로 입력해야 한다.

반응형