본문 바로가기

Android24

flutter 다트 코드에서 호스트 플랫폼을 어떻게 감지하나요?, How do you detect the host platform from Dart code? 질문 For UI that should differ slightly on iOS and Android, i.e. on different platforms, there must be a way to detect which one the app is running on, but I couldn't find it in the docs. What is it? UI가 iOS와 Android에서 약간 다른 경우, 즉 다른 플랫폼에서는 응용 프로그램이 실행 중인 플랫폼을 감지하는 방법이 있어야하지만 문서에서 찾을 수 없었습니다. 그것은 무엇입니까? 답변 import 'dart:io' show Platform; if (Platform.isAndroid) { // Android-specific code } else if.. 2023. 5. 8.
flutter 플러터에서 패키지 이름을 변경하는 방법은 무엇인가요?, How to change package name in flutter? 질문 Flutter 프로젝트의 패키지 이름을 변경하는 방법이 있나요? Flutter 프로젝트에서 패키지 이름과 애플리케이션 이름을 변경하고 싶습니다. 답변 안드로이드 앱 이름 변경 AndroidManifest.xml 파일에서 레이블 이름을 변경하십시오. 2023. 5. 8.
flutter 플러터에서 어플리케이션 런처 아이콘을 변경하는 방법은 무엇인가요?, How to change the application launcher icon on Flutter? 질문 flutter create 명령어로 앱을 만들 때, 플랫폼 모두에 대해 플러터 로고가 앱 아이콘으로 사용됩니다. 앱 아이콘을 변경하려면 두 플랫폼 디렉토리로 이동하여 이미지를 교체해야 할까요? 여기서 플랫폼 디렉토리란 iOS의 myapp/ios/Runner/Assets.xcassets/AppIcon.appiconset과 Android의 myapp/android/app/src/main/res을 의미합니다. 혹시 Flutter Asset로 이미지를 정의하고 아이콘을 어떻게 생성할 수 있는지 알고 계신가요? 답변 Flutter Launcher Icons는 안드로이드와 iOS 모두에 대한 런처 아이콘을 빠르게 생성하는 데 도움이되도록 설계되었습니다: https://pub.dartlang.org/packag.. 2023. 5. 8.
Flutter에서 border-radius가 있는 둥근 버튼 / 버튼을 만드세요., Create a rounded button / button with border-radius in Flutter 질문 I'm currently developing an Android app in Flutter. How can I add a rounded button? 답변 1. 솔루션 요약 FlatButton과 RaisedButton은 더 이상 사용되지 않습니다. 따라서 TextButton과 ElevatedButton에 대해 style 속성에 배치된 shape를 사용할 수 있습니다. Flutter 2.0 이후에는 몇 가지 변경 사항이 있습니다. style: 속성 유형이 ButtonStyle로 변경되었습니다. shape: 속성 유형이 MaterialStateProperty로 변경되었습니다. 2. 둥근 버튼 style 속성 내부에 shape 속성이 있습니다. style: ButtonStyle( shape: Materi.. 2023. 5. 8.