Flutter 날짜 선택기를 사용자 정의하는 방법, How to customize a date picker
질문 저는 플러터 애플리케이션에서 showDatePicker() 메소드를 사용하여 날짜 선택기를 표시하고 있습니다. 날짜 선택기의 색상을 사용자 정의하는 방법은 무엇인가요? 여기에 제 테마의 코드가 있습니다: class CustomTheme extends Theme { /* * 색상: * 기본 파랑: #335C81 (51, 92, 129) * 연한 파랑: #74B3CE (116, 179, 206) * 노랑: #FCA311 (252, 163, 17) * 빨강: #E15554 (255, 85, 84) * 초록: #3BB273 (59, 178, 115) */ static int _fullAlpha = 255; static Color blueDark = new Color.fromARGB(_fullAlpha, 5..
2023. 10. 1.
Flutter 플러터에서 AppBar의 전달 아이콘 주위의 여분의 여백을 제거하는 방법, How to remove extra padding around AppBar leading icon in Flutter
질문 내 Flutter 앱에서 이 AppBar이 있습니다. Widget setAppBar(){ return new AppBar( title: addAppBarTextWidget('탐색'), elevation: 0.0, leading: addLeadingIcon(), actions: [ addAppBarActionWidget(Constant.iconNotification, 22.0, 16.0, 8.0), addAppBarActionWidget(Constant.iconProfile, 30.0, 30.0, 15.0) ], ); } Widget addLeadingIcon(){ return new Container( height: 25.0, width: 25.0, padding: const EdgeInsets.f..
2023. 10. 1.