본문 바로가기
반응형

분류 전체보기272

Introducing Positron (data science) https://isabel.quarto.pub/end-to-end-data-science-with-the-positron-ide/#/title-slide End-to-end data science with the Positron IDEThe origin story Multi-language IDE for data science Made by Positron is a fork of the open source VSCode, customized for data science similar strategy to other IDEs such as Cursor able to use Open VSX extensions enables multilingual data science perhaps misabel.quar.. 2024. 12. 10.
[Flutter] Provider vs Riverpod ProviderProvider는 Flutter에서 가장 널리 사용되는 상태 관리 라이브러리 중 하나로, 전역 상태 관리를 간편하게 처리할 수 있도록 도와줍니다. Provider는 InheritedWidget을 기반으로 하고 있으며, 상태를 앱의 위젯 트리에 효율적으로 전달합니다. 주요 개념:Provider: 데이터를 제공하는 역할을 하며, 데이터를 하위 위젯으로 전달합니다.Consumer: Provider로부터 데이터를 읽고, 그 데이터가 변경될 때 UI를 갱신하는 역할을 합니다.ChangeNotifier: 상태를 관리하는 클래스로, 데이터의 변경을 알리고 UI에 갱신을 요청할 수 있도록 도와줍니다.기본 사용 예시import 'package:flutter/material.dart';import 'pack.. 2024. 12. 10.
[Flutter] Voice Chat /w geolocator https://docs.agora.io/en/voice-calling/get-started/get-started-sdk?platform=flutter Voice Calling SDK quickstart | Agora DocsRapidly develop and easily enhance your social, work, education and IoT apps with face-to-face interaction.docs.agora.io    pubspec.yamlname: description: A new Flutter project.# The following line prevents the package from being accidentally published to# pub.dev using `f.. 2024. 12. 9.
[Flutter] CMake 오류 발생 CMake 오류를 해결하기 위해서는 빌드 캐시를 정리하고 다시 빌드해야 합니다. 다음 단계를 따라해보세요:  1. 먼저 build 디렉토리를 삭제합니다:# location_voicechat 프로젝트 루트 디렉토리에서rm -rf build/2. Flutter 프로젝트를 정리합니다:flutter clean3. 의존성을 다시 가져옵니다:flutter pub get​4. Windows 빌드를 다시 실행합니다: flutter build windows     이 오류는 보통 프로젝트 위치가 변경되었거나 이전 빌드의 캐시가 남아있을 때 발생합니다. 위의 단계들을 수행하면 CMake 캐시가 초기화되고 새로운 위치에서 올바르게 빌드가 진행될 것입니다. 2024. 12. 9.
반응형