반응형 Button1 [flutter] 버튼 눌림(클릭) 효과 주기 - 스타일 변경 플루터에서 버튼 스타일 및 눌림 효과 주는 방법 1. 버튼 스타일 변경 명칭은 다르지만 적용하는 속성의 명칭은 모두 동일합니다. 1-1. ElevatedButton ElevatedButton.styleFrom 사용 ElevatedButton( onPressed: () {}, child: Text( "ElevatedButton", ), style: ElevatedButton.styleFrom( // 글자 및 에니메이션 색상 foregroundColor: Colors.black, // 메인 칼라 backgroundColor: Colors.red, //그림자 색상 shadowColor: Colors.green, // 3d 입체감 효과 elevation: 100, textStyle: TextStyle( font.. 2023. 2. 1. 이전 1 다음 반응형