본문 바로가기

개발일지19

http 연결 허용시키기 출처: https://stackoverflow.com/questions/64172791/flutter-insecure-http-is-not-allowed-by-platform 45 Generally it is required (and preferable) to use https links rather than http links. However, this can be overridden as shown below. Android Open the AndroidManifest.xml file in the android/app/src/main folder. Then set usesCleartextTraffic to true. See this question for more. iOS Open the Info.p.. 2021. 5. 22.
graphql_flutter subscription 구현 저장 출처:https://bartvwezel.nl/flutter/how-to-process-graphql-subscriptions-in-flutter/ How to Process GraphQL Subscriptions in Flutter BARTTJE JANUARY 7, 2021 FLUTTER,GRAPHQL In this blog post, we are going to explain how to work with GraphQL Subscriptions in Flutter. We are going to create a simple counter app that will increase the number by one each time we press a button. We will increase the but.. 2021. 5. 13.
Android studio snippet 추가하기 출처: stackoverflow.com/questions/16857108/how-to-add-code-snippets-in-android-studio-ide 91 To add/edit templates: On the menu choose File -> Settings, then under IDE Settings (or Editor) go to Live Templates. To insert a template: On the menu choose Code -> Insert Live Template (or use it's assigned shortcut key). Screenshot Android Studio 3.4 Share Follow edited Aug 31 '19 at 9:00 Saeed Arianma.. 2021. 5. 11.
nestjs oneToMany/ManyToOne relation 오류 (node:422777) UnhandledPromiseRejectionWarning: Error: Schema must contain uniquely named types but contains multiple types named "UserEntity". nestjs로 table간 relation을 만들다가 만난 오류 며칠간 고생하다 정말 두통생김 ㅋㅋㅋ😵😵 결국 슬랙채널에 질문! OS: kubuntu, 입니다. https://github.com/wakacuka/jobackend 고양이 사진을 달고 계신 '이은덕'님의 답변 Shop이나 UserEntity에 @InputType({isAbstacted: true}) 하셨는데 그 앞에 @InputType('UserEntityInputType', {isAbs.. 2021. 2. 1.