Keunyoung Songmapotofu.hashnode.dev·May 19, 2024[Android Library]Image Picker Android library 배포하기(1)스파르타코딩클럽의 안드로이드 개발 과정의 최종 프로젝트에서 전국 캠핑장 정보와 커뮤니티 기능을 제공하는 프로젝트 CampingMate 를 진행하게 됐다. 그 중엔 주된 커뮤니티 기능을 담당하는 게시판 관련 기능들이 있었고 게시물을 업로드하며 이미지도 함께 올릴 수 있는 기능도 포함되어 있었다. 이미지 업로드를 구현하기 위해 로컬 이미지 경로를 가져올 수 있는 몇몇 라이브러리를 확인해야 했고 github 에 올라와있던 라이브러리들을 찾을 수 있었...170 readsOpenSourcecustom view
Matthewserendipitymatthew.hashnode.dev·Dec 11, 2023Android Photo Picker第一种方式 val pictureLauncher = rememberLauncherForActivityResult(contract = ActivityResultContracts.GetContent(), onResult = { uri -> Log.d(MainActivity.TAG, "GetContent= $uri") } ) Button( modifier = Modifier.wra...1 likephotopicker
Xavierxavier7t.com·Feb 17, 2023Photo Picker in SwiftUI (PhotosPicker)In this post, we’ll implement a SwiftUI view that allows the users to pick a photo from their photo library, with the SwiftUI PhotosPicker. The source code of this post is available here. Step 0 - Overview Before getting started, let’s learn more abo...372 readsiOS