본문 바로가기 메뉴 바로가기

Летучий программист

프로필사진
  • 글쓰기
  • 관리
  • 태그
  • 방명록
  • RSS

Летучий программист

검색하기 폼
  • 분류 전체보기 (67)
    • Languages (1)
      • Python (0)
      • Kotlin (1)
      • Dart (0)
    • Server (10)
      • Spring (1)
      • PHP (3)
      • DB (0)
      • ETC (4)
      • Django (1)
      • AWS (1)
    • App (47)
      • Flutter (27)
      • Android Native (20)
      • General (0)
    • 그 외 (9)
      • CS (1)
      • SCM (1)
      • ETC (0)
  • 방명록

분류 전체보기 (67)
Flow/Coroutines in Android/Kotlin

collect() != collectLatest() collect() => It collects every value that theoriginal flow emits and it is recommended to use when all received data should be processed. collectLatest() => It collects every value, but stops to work for the previous value when the original flow emits a new value. It is fairly for the case when the latest data should be processed. val countFlow = flow { val startingV..

App/Android Native 2023. 5. 11. 12:06
[Android Native] Firebase dynamic link for AOS above 13 - does not open an app directly, it redirects only to playstore

ISSUE Firebase dynamic link was needed to provide a guest account for Google Playstore reviewers as they are unable to proceed with authentication. The application might have opened directly once a tester clicked the provided link, but it only showed a grey circular indicator or redirected to the Google Playstore. According to the new policy for AOS above 13, you have to set more confidential in..

App/Android Native 2023. 4. 12. 18:28
[Flutter] How to install/use FVM(flutter version management) and setup in VScode?

You might face to control more than two flutter versions consisting of the old version for the previous released app and the new version for the developing project as flutter is upgrading at high speed. FVM which is an abbreviation of flutter version management will definitely solve your troublesome problem. All inforamation was taken from the official resource - https://fvm.app/. 1) Install fvm..

App/Flutter 2023. 3. 31. 12:15
How to install python and manage its version control in MacOS

1) Install pyenv - python version management with homebrew. (https://github.com/pyenv/pyenv) brew install pyenv 2) Set up shell environment for using pyenv. (zsh) echo 'export PYENV_ROOT="$HOME/.pyenv"' >> ~/.zshrc echo 'command -v pyenv >/dev/null || export PATH="$PYENV_ROOT/bin:$PATH"' >> ~/.zshrc echo 'eval "$(pyenv init -)"' >> ~/.zshrc # for the PATH changes to take effect. exec "$SHELL" 3)..

Server/Django 2023. 3. 30. 12:49
Flutter - How to get a global BuildContext to use anywhere?

BuildContext => A handle to the location of a widget in the widget tree in Flutter and is used for widgets, navigation, dialogs and etc. Why global BuildContext ? => To navigate to another screen or call a dialog as a result of specific function. BuildContext is limited to use in the "build" method of stateless or stateful widget that makes troublesome for MVVM architecture where business logics..

App/Flutter 2023. 2. 22. 18:21
Flutter Rive - make your app dynamic

Rive declares itself that 10x smaller and faster than widely-used Lottie and now supports Flutter that makes an app more dynamic and outstanding to attract more users 🙋🏻‍♀️ Tutorial Reference => https://www.youtube.com/watch?v=Td3xEWwRAQA Prerequisites => flutter pub add rive 1) Rive Animation in Onboarding Screen # blurred background Stack( children: [ Positioned.fill( child: BackdropFilter( fi..

App/Flutter 2023. 2. 16. 11:26
A RenderShrinkWrappingViewport expected a child of type RenderSliver but received a child of type RenderConstrainedBox.

ISSUE : CustomScrollView widget which consists of SlivderList(SliverChildBuilderDelegate) and is supported by riverpod state management suddenly occured the error below. Sliver-related widget doesn't show the specified widget from provider's when method (error: (err, stackTrace) => const SizedBox()) and throws an exception Error Output Code: list() { final notifications = ref.watch(notificationP..

App/Flutter 2023. 2. 14. 16:31
where, firstWhere -> Bad state: No element

Before - There was no null-handling in the method "firstWhere" which throws an error "Bad State" once it returns "null" value. String? title = e.inspections .firstWhere((e) => e.name == inspection.name) .value; text = Text( title ?? '-'); After - Add "orElse" caluse inside the method but note that value "null" is unavailable to set. In my case, the returned value is an object of "Inspection" tha..

App/Flutter 2023. 2. 9. 14:30
Flutter Hook - Summary

Hooks ? - let us organize the logic inside a component into reusable isolated units. - let use functions instead of having to constantly switch between functions, classes, higher-order components, and render props. - are fully encapsulated and work as a isolated local state within the currently running component. - redeems statefulWidget's difficulty of logic reusability. (Ref -> https://medium...

App/Flutter 2023. 2. 1. 17:27
table_calendar is not scrollable vertically inside ListView/SingleChildScrollView

ISSUE => table_calendar is not scrollable vertically inside the main scrollview widget. If you don't use vertical gesture for table calendar and want to make it scrollable listening to the main widget such as ListView, SingleChildScrollView, set "false" to the property of "primary" of ListView and make sure that you have blocked verticalSwipe in "availableGestures" inside Table Calendar.

App/Flutter 2023. 1. 31. 11:26
이전 1 2 3 4 5 ··· 7 다음
이전 다음
공지사항
최근에 올라온 글
최근에 달린 댓글
Total
Today
Yesterday
링크
TAG
  • WirelessDebug
  • futter_api
  • retrofit_generator_conflicts_with_freezed
  • mvvm
  • laravel9
  • android_app_links_domain
  • android_app_links
  • Laravel
  • querydslKotlinError
  • FlutterWirelessDebuginAOS
  • querydsl5.0.0jakarta
  • dagger-hilt
  • RunAFlutterProjectIniPhoneFromVSCode
  • android_app_link_domain_works_with_adb_but_not_works_with_browser
  • flutter_storage_not_working_for_the_first_time
  • Android
  • android_domain
  • phplaravel
  • retrofit_generator
  • flutter_secure_storage_issue_iOS
  • flutter_android_app_links
  • KotlinFlow
  • FirebaseConfigurationForMultipleBuildTypes
  • querydslQclass
  • AndroidWirelessDebug
  • MultipleFirebaseEnvironments
  • Kotlin
  • retrofit_toJson()_error
  • unsplashAPI
  • flutter
more
«   2025/05   »
일 월 화 수 목 금 토
1 2 3
4 5 6 7 8 9 10
11 12 13 14 15 16 17
18 19 20 21 22 23 24
25 26 27 28 29 30 31
글 보관함

Blog is powered by Tistory / Designed by Tistory

티스토리툴바