소개
게시글
질문&답변
2024.05.20
에러가 생겨서 질문드립니다
재 시작하면 똑같은 에러 생깁니다.기다리는 시간이 몇 십분 단위라서 ...버전이 바뀌면서 에러가 생기지 않았나 생각되는데 어디가 문제인지 잡을수가 없네요구글 검색해보니 같은 증상을 가진 사람이 많이 있네요같은 문의 사항도 많이 올라오고요참고로 검색 내용을 첨부합니다. OnBackInvokedCallback is not enabled for the application in Set 'android:enableOnBackInvokedCallback="true"' in the application manifest as warning 위 에러 내용으로 검색하면 몇 개 나오는데, 그중에Stack Overflow, Reddit, 티스토리 보고 이해를 못해서인지 따라해도 안되네요 참고로국내 사이트 티스토리 에는 Android API 33에서 개선된 predictive back gesture이다.https://itstory1592.tistory.com/128 Stack Overflowhttps://stackoverflow.com/questions/73782320/onbackinvokedcallback-is-not-enabled-for-the-application-in-set-androidenableo Reddithttps://www.reddit.com/r/flutterhelp/comments/170iycq/onbackinvokedcallback_is_not_enabled_for_the/
- 0
- 2
- 914
질문&답변
2024.04.30
repository 의 app.js 소스 수정 요망
안되서 어제 한참 찾았네요. 오늘 포기하구 진도나가다가 혹시 몰라서 게시판 뒤지다가 올리신 글보고 1을 빼고 수정하니 되네요. Mercy 님 감사합니다.하 참 나 같은 초짜는 많이 해멜듯추가 ; 질문한 장에는 설명이 /users' 로 나오고 다운받은 소스는 users/1' 로 나와서 동작 안됩니다.그래서 질문 보고 1 빼고 나서 해결 함그런데다음장에는 2번째줄이 /users/1' 로 나오는데 소스를 안 고치고 영상만을 바꾸셨네요. 참고 바랍니다.(사진)(사진)
- 6
- 2
- 344
질문&답변
2024.04.02
5 라이프사이클 모듈화 - 질문
import { delayRender, lifecycle } from "./lifecycle.js"; import Something from "./Something.svelte"; let done = delayRender(); lifecycle(); {#if done} Hello Lifecycle! {/if} import { afterUpdate, beforeUpdate, onDestroy, onMount } from "svelte" import { writable } from "svelte/store" export function lifecycle() { onMount(() => { console.log("Mounted?") }) onDestroy(() => { console.log("Before destroy?") }) beforeUpdate(() => { console.log("Before update?") }) afterUpdate(() => { console.log("After update?") }) } export function delayRender(delay = 3000) { let render = writable(false) onMount(() => { setTimeout(() => { // $render = true console.log(render) // set, update, subscribe render.set(true) }, delay) }) return render } import { delayRender } from "./lifecycle.js"; let done = delayRender(1000); {#if $done} something... {/if}
- 0
- 1
- 139
질문&답변
2024.04.02
강의 소스 코드
라이프 사이클 모듈화 이 단원 코드는 어디서 받나요똑같이 동작 안해서 확인 하려구요
- 1
- 2
- 490
질문&답변
2024.03.27
dart pad 도움말
다트 패드 버전이 바꿔서 그렇다네요
- 0
- 4
- 556