flutter55 flutter Navigator 메서드 Navigator 메서드 1) Push 새로운 화면을 스택에 추가한다. 새 화면을 현재 화면 위에 푸시하여 사용자가 새 화면을 볼 수 있게 한다 Navigator.of(context).push(route) Navigator.of(context).push(MaterialPageRoute(builder: (context) => YourScreen())) 2) pushNamed 지정된 라우트 이름에 해당하는 화면을 스택에 추가한다 Navigator.of(context).pushNamed(routeName) 3) pushReplacement / pushReplacementNamed 현재 화면을 스택에서 제거하고 새 화면을 추가 이전화면으로 돌아가지 못하고, 새로운 화면으로 전환할 때 사용한다 Navigator... 2023. 10. 25. 20230927 TIL Today 요약 [✅] leetcode 문제 1문제 [✅] 프로그래머스 코딩테스트 1문제 [✅] flutter 강의 2개 Problems - LeetCode Boost your coding interview skills and confidence by practicing real interview questions with LeetCode. Our platform offers a range of essential problems for practice, as well as the latest questions being asked by top-tier companies. leetcode.com 배운 점 1) Flutter 갤러리 저장 flutter gallery_saver 사용하여 갤러리에 사진 저장하기.. 2023. 9. 27. 20230918 TIL :: 코로나에 진 몸뚱아리 Today 요약 [✅] 프로그래머스 코딩테스트 2문제 [✅] flutter 코드챌린지 [✅] flutter 강의 1개 배운 점 1. js array reduce array.reduce((a,v)=> a+v); a는 누적값, v는 배열의 각 요소 array 모든 배열의 요소를 더해 하나의 값을 반환 array = [1,2,3,4,5] 이면 1+2+3+4+5 가 되어 15 반환 2. flutter GestureDetector GestureDetector class - widgets library - Dart API A widget that detects gestures. Attempts to recognize gestures that correspond to its non-null callbacks. If .. 2023. 9. 18. 20230911 TIL : 업보빔 맞는 중 Today 요약 [✅] 프로그래머스 코딩테스트 Lv0 1문제 [✅] flutter 강의 3개 배운 점 1. flutter camera flutter pub add camera 자동으로 권한을 요청하며 사용자가 허용하지 않으면 에러를 반환 1-1 Android sdk 최소 버전 21 (android/app/build.gradle) minSdkVersion 21 camera | Flutter Package A Flutter plugin for controlling the camera. Supports previewing the camera feed, capturing images and video, and streaming image buffers to Dart. pub.dev 2. flutter permi.. 2023. 9. 11. 20230905 : 오늘도 해낸 나 아주 칭찬 Today 요약 [✅] 프로그래머스 코딩테스트 lv0 1문제 [✅] flutter 강의 2개 [✅] flutter 위젯 강의 1개 [✅] dart 강의 2개 배운 점 1) flutter CustomTransitionPage 사용자 정의 전환 기능이 포함된페이지 MaterialPage 또는 CupertinoPage 대신 사용된다 새로운 경로로 라우팅할 때 trasitionBuilder가 CustomTransitionPage 호출되며 전환 위젯을 반환 GoRoute( path: '/fade', pageBuilder: (context, state) => CustomTransitionPage( key: state.pageKey, child: const TransitionsPage(kind: 'fade', col.. 2023. 9. 5. 20230904 TIL : 믿음의 월요일 라스고 Today 요약 [✅] 프로그래머스 코딩테스트 1문제 [✅] flutter 강의 2개 [✅] 개발 책 3P 배운 점 1) flutter Gorouter parameters GoRouter와 Navigator 1.0을 조합해서 만들수도 있음 1-1 Goroute GoRouter class - go_router library - Dart API The route configuration for the app. The routes list specifies the top-level routes for the app. It must not be empty and must contain an GoRouter to match /. See the Get started example, which shows an app.. 2023. 9. 4. 이전 1 2 3 4 ··· 10 다음