본문 바로가기
개발/Flutter

평범한 텍스트 버튼

by dev_caleb 2022. 7. 8.
728x90

elevation button 을 만들어서 elevation =0 할 필요 없이 textbutton 을 만들어서 background color를 주면 더 편하게 만들수 있다라는 것을 알게 되었다.

 

/*TextButton(
onPressed: () => Get.toNamed(Routes.editProfilePage),
style: ButtonStyle(
  backgroundColor: MaterialStateProperty.all(
      AppColors.lightGray02),
  shape: MaterialStateProperty.all<
      RoundedRectangleBorder>(RoundedRectangleBorder(
    borderRadius: BorderRadius.circular(40),
  )),
),
child: Text(
        '수정',
        style: AppTextStyles.button2
            .copyWith(color: AppColors.gray01),
      ))*/

 

728x90

'개발 > Flutter' 카테고리의 다른 글

FCM icon 바꾸기  (0) 2022.07.20
flutter_local_notifications(1/2)  (0) 2022.07.19
index scroll library  (0) 2022.07.05
Getx refresh()  (0) 2022.07.01
flutter model에서 원하는 argument만 뽑아서 처리하기  (0) 2022.06.26