본문 바로가기

backgroundcolor3

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에서 Row()의 배경색을 설정하는 방법은 무엇인가요?, How to set the background color of a Row() in Flutter? 질문 I'm trying to set up a background color for a Row() widget, but Row itself has no background color or color attribute. I've been able to set the background color of a container to grey, right before the purple-backgrounded text, but the text itself does not fill the background completely and the following spacer does not take any color at all. So how can I have the Row background set to the ".. 2023. 9. 21.
Flutter에서 메인 화면의 배경색을 어떻게 설정하나요?, How do I set the background color of my main screen in Flutter? 질문 저는 Flutter를 배우고 있습니다. 매우 기초부터 시작하고 있습니다. MaterialApp을 사용하지 않고 전체 화면의 배경색을 설정하는 좋은 방법이 무엇인가요? 지금까지 작성한 코드는 다음과 같습니다: import 'package:flutter/material.dart'; void main() { runApp(new MyApp()); } class MyApp extends StatelessWidget { // This widget is the root of your application. @override Widget build(BuildContext context) { return new Center(child: new Text("Hello, World!")); } } 제가 가진 몇 가지 질.. 2023. 5. 17.