Flutter397 Flutter VSCode에서 플러터 위젯을 어떻게 둘러싸는지 알려주세요., How to surround flutter widget in vscode 질문 Visual Studio Code에서 코드 블록을 둘러싸거나 특정 위젯 이름을 강조한 다음 해당 위젯의 자식들을 둘러싸는 바로 가기 키 또는 확장 기능이 있는지 궁금합니다. 자주 그런 경우가 있는데, 예를 들어 다음과 같은 것을 생성했을 때: Padding( padding: EdgeInsets.all(10.0), child: Container( ... 그런 다음 일부 작성 후에 Padding을 Column이나 Row와 같은 다른 것으로 둘러싸려고 합니다. 현재로서는 Padding 앞에 Row( child:를 추가하고 아래로 스크롤하여 새로운 ),` 괄호를 추가해야합니다. Padding을 선택하고 vs code에게 이것을 접두사로 사용할 것이라고 알리면 괄호를 추가해주는 방법이 없을까요? Intell.. 2023. 7. 12. Flutter 더 많은 옵션을 위해 스와이프 목록 항목 (플러터), Swipe List Item for more options (Flutter) 질문 Somedays ago I decided to choose an Ui for an app from Pinterest to practice building apps with Flutter but I'm stuck with the Slider which shows an "more" and "delete" button on horizontal drag. Picture on the right. I don't have enough knowledge to use Gestures combined with Animations to create something like this in flutter. Thats why I hope that someone of you can make an example for eve.. 2023. 7. 12. Flutter 플러터에서 환경 변수 설정하기, Setting environment variables in Flutter 질문 예를 들어, Twitch와 같은 API를 위한 클라이언트를 구축하는 경우입니다. Dart CLI 바이너리에서는 일반적인 환경 변수 또는 Dart 정의 변수를 사용할 수 있습니다. 예를 들어, 둘 다 대비책으로 사용하는 경우: main() { String clientId = // dart -dCLIENT_ID='abc bin/example.dart // 이는 애플리케이션에 "컴파일된 것으로 간주됩니다. const String.fromEnvironment('CLIENT_ID') ?? // CLIENT_ID='abc' dart bin/example.dart // 이는 런타임 플래그로 간주됩니다. Platform.environment['CLIENT_ID']; // clientId를 사용합니다. } Flut.. 2023. 7. 12. Flutter 나쁜 상태: "application/json" 콘텐트 유형을 가진 Request의 본문 필드를 설정할 수 없습니다., Bad state: Cannot set the body fields of a Request with content-type "application/json" 질문 Map headers = {'Content-Type':'application/json','authorization':'Basic c3R1ZHlkb3RlOnN0dWR5ZG90ZTEyMw=='}; var response = await post(Urls.getToken, headers: headers, body: {"grant_type":"password","username":"******","password":"*****","scope":"offline_access"}, ); 이를 실행할 때 데이터를 받을 수 없으며 발생하는 오류는 다음과 같습니다. Bad state: "application/json" 타입의 content-type을 가진 요청의 body 필드를 설정할 수 없습니다. 답변 본문을 jso.. 2023. 7. 12. 이전 1 ··· 48 49 50 51 52 53 54 ··· 100 다음