본문 바로가기

materialapp7

Flutter 프로젝트 이름 변경, Changing the project name 질문 플러터 프로젝트의 프로젝트 이름을 변경할 수 있을까요? 프로젝트 이름이란 플러터 프로젝트를 생성할 때 제공하는 이름을 의미합니다. flutter create name입니다. 답변 그것은 당신이 어떤 결과를 얻고자 하는지에 따라 다릅니다. 모바일 폰 메뉴에 표시되는 앱 이름과 함께 앱 아이콘을 변경하려면 android/app/src/main/AndroidManifest.xml에서 android:label (코드 샘플 1)과 ios/Runner/Info.plist에서 CFBundleName (코드 샘플 2)을 변경해야 합니다. 마지막으로 이 작업을 할 때 앱 이름이 Android에서 현재 실행 중인 앱 목록에서 변경되지 않는 이유를 찾는 데 시간이 오래 걸렸습니다. 이를 위해서는 MaterialApp의.. 2023. 9. 7.
Flutter TabController 생성자의 `vsync` 속성, `vsync` property in TabController constructor 질문 다음에 따르면: 샘플 코드 나는 TabController의 내 구현을 만들었습니다: void main() { runApp(new MyApp()); } class MyApp extends StatefulWidget { @override _MyAppState createState() => new _MyAppState(); } class _MyAppState extends State { TabController _tabController; @override void initState() { super.initState(); _tabController = new TabController(vsync: this, length: choices.length); } @override void dispose() { .. 2023. 8. 12.
Flutter 플러터에서 다크 모드와 라이트 모드를 구현하는 방법은 무엇인가요?, How to implement Dark mode and Light Mode in flutter? 질문 I want to create a flutter app that has 2 light and dark mode themes that change by a switch in-app and the default theme is default android theme. I need to pass some custom color to the fellow widget and I don't want to just config material theme. how to detect the user device default theme? the secend question is how to provide a theme to the whole app? third is how change the theme with a.. 2023. 6. 12.
Flutter 플러터에서 primaryColor와 primarySwatch의 차이점은 무엇인가요?, What is the difference between primaryColor and primarySwatch in Flutter? 질문 Flutter에서는 ThemeData 클래스를 사용하여 앱에 테마를 적용할 수 있습니다. 그러나 이 클래스에는 primaryColor 및 primarySwatch 두 가지 속성이 있어서 혼란스러워집니다. 이 두 속성의 차이점은 무엇이며 어떤 경우에 사용해야 하는지 알려주세요. 감사합니다. 답변 primarySwatch은 색상이 아닙니다. 그것은 MaterialColor입니다. 이는 머터리얼 앱에서 사용할 색상의 다른 음영이라는 뜻입니다. primaryColor는 그 음영 중 하나입니다. 정확하게 말하면, primaryColor는 보통 primarySwatch[500]과 같습니다. 그림자, 테두리 등을 위해 일부 머터리얼 컴포넌트가 primaryColor의 다른 음영을 사용할 수 있기 때문에 prim.. 2023. 5. 29.