
프로젝트 하다가 fun createGroup(context: Context, uri: Uri, groupDto: Group) { val groupImage = MultipartUtil.getImageBody(UriUtil.toFile(context, uri)) val groupDtoPart = gson.toJson(groupDto).toRequestBody("application/json".toMediaTypeOrNull()) viewModelScope.launch { val response = repository.createGroup(groupDtoPart, groupImage) val type = "그룹 생성에" when (response) { is NetworkResponse.Success -> {..

100% 컴포즈 사용하는 프로젝트 진행중이다 컴포즈 예시로 올라온 자료가 있긴하지만 일단 내맘대로 하고있다 하면서 여러 고민이 있는데 하다가 까먹고 또 똑같은 고민을 하고있어서 걍 써보기로했다 그냥 내 고민이라서.. 결론은 없는 글이 될것이다 그니깐 mvvm패턴을 적용해서 하는데 그러면 레포지토리가 있을거고 걔한테서 viewmodel이 값달라고 요청을 할건데 그 값 달라고 요청을 어디서 해야될까? compose는 state가 변경되면 composable함수 안에 있는 애들을 실행한다 그래서 아무 생각없이 이렇게 그냥 컴포저블 함수 안에 viewmodel에 있는 값 업데이트 함수를 불러버리면 처음 화면 불러올때 api요청하고 그담에 화면 리컴포저블될때 또 api요청을 하게된다 뒤로가기 할때도 한번 더 불리..

https://stackoverflow.com/questions/53689662/flutter-webview-two-way-communication-with-javascript Flutter Webview two way communication with Javascript I have an html file that I am loading in Flutter webview using flutter_webview_plugin. I am using evalJavascript to call function in my javascript code, meaning flutter(dart)->js. However, I also n... stackoverflow.com https://junspapa-itdev.tis..

일단 결론은 LazyColumn안에 LazyColumn을 넣는게 아니다 LazyColumn안에 item을 여러개 넣을 수 있는 LazyListScope안에 또다시 LazyListScope를 넣는것임 그리고 그 LazyListScope에 댓글 대댓글을 item으로 넣는것 https://demat.tistory.com/71 [Compose] LazyColumn안에 LazyColumn넣기, NestedScroll, Column 안에 LazyColumn넣기 이런식으로 게시판 화면을 만들고 싶었다 그래서 Column에 스크롤을 넣고 그 안에 댓글부분은 LazyColumn으로 넣었다 그랬더니 아래같은 오류가 나고 터졌다 java.lang.IllegalStateException: Vertically scrollabl..

이렇게 제목 옆에 공개글이면 혹은 비공개글이면 자물쇠가 보이도록 하고싶었다 Row( verticalAlignment = Alignment.CenterVertically, horizontalArrangement = Arrangement.Start ) { Text( text = resultTitle, fontWeight = FontWeight.Bold, fontSize = 16.sp, maxLines = 1, overflow = TextOverflow.Ellipsis ) if (postData.normalUserId == userDataId && postData.postType == PostType.ASK.label) { Spacer(modifier = Modifier.size(8.dp)) if (postD..

이런식으로 게시판 화면을 만들고 싶었다 그래서 Column에 스크롤을 넣고 그 안에 댓글부분은 LazyColumn으로 넣었다 그랬더니 아래같은 오류가 나고 터졌다 java.lang.IllegalStateException: Vertically scrollable component was measured with an infinity maximum height constraints, which is disallowed. One of the common reasons is nesting layouts like LazyColumn and Column(Modifier.verticalScroll()). If you want to add a header before the list of items please add..