Flutter397 Flutter 플러터는 단일 코드베이스로 iOS에서는 Cupertino UI를 자동으로 표시하고, Android에서는 Material을 자동으로 표시합니까?, Does Flutter automatically display Cupertino UI in iOS and Material in Android with a sing.. 질문 Flutter가 iOS와 안드로이드에서 단일 코드베이스로 iOS의 Cupertino 스타일과 안드로이드의 Material을 렌더링하는지 알고 싶습니다. Flutter로 앱을 개발하기 전에 이를 알고 싶습니다. 만약 그렇지 않다면, 단일 코드에서 두 가지 다른 UI를 어떻게 관리해야 할까요? 코드 전체에 if/else를 사용할 수는 없습니다. 답변 갤러리 앱을 시도해보세요: https://play.google.com/store/apps/details?id=io.flutter.demo.gallery&hl=en 거기서 메뉴 버튼을 누르면 플랫폼 기능을 Mountain View (Android) 또는 Cupertino (iOS)로 설정할 수 있습니다. 이렇게하면 어느 플랫폼에서 어떻게 보일지 확인할 수 있.. 2023. 7. 12. Flutter 플러터 앱의 빌드 및 버전 번호를 설정하는 방법은 무엇인가요?, How to set build and version number of Flutter app 질문 안드로이드 및 iOS 설정에 들어가지 않고 Flutter 앱의 버전 이름과 버전 코드를 설정하는 방법은 무엇인가요? pubspec.yaml에는 다음과 같이 있습니다. version: 2.0.0 하지만 빌드 번호를 설정할 수 있는 곳을 보지 못합니다. 답변 버전 및 빌드 번호 설정하기 pubspec.yaml에서 버전 이름과 버전 코드 번호를 동시에 업데이트할 수 있습니다. + 기호로 구분하면 됩니다. 예를 들어: version: 2.0.0+8 이는 다음을 의미합니다. 버전 이름은 2.0.0입니다. 버전 코드는 8입니다. 이 내용은 새 프로젝트의 문서에 설명되어 있습니다. (하지만 오래된 프로젝트에서 작업 중이라면 삭제한 것일 수도 있습니다): 다음은 애플리케이션의 버전과 빌드 번호를 정의합니다. 버전.. 2023. 7. 12. Flutter에서 이미지와 파일을 서버에 업로드하는 방법은 무엇인가요?, How to upload images and file to a server in Flutter? 질문 이미지 처리를 위해 웹 서비스를 사용합니다. Postman에서 잘 작동합니다: 이제 Dart에서 flutter를 사용하여 http 요청을 만들고 싶습니다: import 'package:http/http.dart' as http; static ocr(File image) async { var url = '${API_URL}ocr'; var bytes = image.readAsBytesSync(); var response = await http.post( url, headers:{ "Content-Type":"multipart/form-data" } , body: { "lang":"fas" , "image":bytes}, encoding: Encoding.getByName("utf-8") ); retu.. 2023. 6. 24. Flutter 플러터에서 열 너비 설정하기, Set column width in flutter 질문 I need to set a Column width in flutter, I have to do a layout with 3 sections, one should be 20% of the screen, the other one 60% and the last one 20%. I know that those 3 columns should be into a row, but I don't know a way to set the size, when I do that, the 3 columns take the same size. I will appreciate any feedback. 답변 크기를 하드 코딩하는 대신 Flex를 사용하는 것을 제안합니다. Row( children: [ Expanded( flex.. 2023. 6. 24. 이전 1 ··· 49 50 51 52 53 54 55 ··· 100 다음