Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[RELEASE/1.2.0->MAIN] 앱 버전 v1.2.0 릴리즈 #13

Merged
merged 28 commits into from
Jun 1, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
a3857a2
feat: 댓글 조회 날짜 변경시 이슈 해결
CChuYong Mar 9, 2024
b2411e8
feat: 의존성 업데이트
CChuYong Mar 20, 2024
ec177c1
feat: 뷰기반 메인 API 추가
CChuYong Apr 19, 2024
06f3fb0
feat: add mission post fetcher
CChuYong Apr 19, 2024
7f7709d
feat: 랜딩 페이지 변경사항 적용
CChuYong Apr 19, 2024
60b3510
feat: 찌르기 구현
CChuYong Apr 19, 2024
a3d5d01
chore: Sentry 제거
CChuYong Apr 19, 2024
36bffab
feat: 피드 기능개발중.. [skip-ci]
CChuYong Apr 24, 2024
2f92e3d
feat: 미션 조회 관련 기능 구현
CChuYong Apr 24, 2024
436d290
feat: 명예의 전당 기능 구현 [skip-ci]
CChuYong Apr 24, 2024
72403e4
feat: 추가된 API 대응
CChuYong Apr 25, 2024
cbb84f1
feat: 미션 업로드 기능 구현
CChuYong Apr 25, 2024
e84a79f
feat: 게시글 조회시 미션 명 노출 [skip-ci]
CChuYong Apr 25, 2024
c54e6d1
feat: add missiontext on calendar detail
CChuYong Apr 29, 2024
f483cff
feat: update version code [skip ci]
CChuYong Apr 29, 2024
590e1b0
feat: fix ui height
CChuYong May 2, 2024
79c9d4b
feat: fix calendar fetch [skip ci]
CChuYong May 2, 2024
5cbc26e
feat: push push
CChuYong May 2, 2024
a7b5fc4
feat: add platforms
CChuYong May 2, 2024
3d1570f
style: 코드 정리
CChuYong May 2, 2024
991c7c7
feat: 문자열 번역 처리
CChuYong May 2, 2024
cd0be6f
style: 안쓰는 코드 정리
CChuYong May 2, 2024
68cbe2a
feat: ranking null값 대응
CChuYong May 8, 2024
6c66c29
feat: main view api 닉네임 nullable 대응
CChuYong May 11, 2024
5cc22b0
feat: 프로필 배너 스켈레톤 추가
CChuYong May 11, 2024
8d979ac
Merge pull request #11 from bibbi-team/dev
CChuYong May 29, 2024
ea3c741
feat: 촬영 시간 및 업로드시간 단축
CChuYong May 30, 2024
4d0db41
Merge pull request #12 from bibbi-team/dev
CChuYong May 31, 2024
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
feat: 프로필 배너 스켈레톤 추가
  • Loading branch information
CChuYong committed May 11, 2024
commit 5cc22b0dde2e524ca952273cdceb146ffa8c54ca
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
package com.no5ing.bbibbi.presentation.feature.view.main.calendar

import androidx.compose.foundation.Image
import androidx.compose.foundation.background
import androidx.compose.foundation.clickable
import androidx.compose.foundation.layout.Arrangement
import androidx.compose.foundation.layout.Box
Expand All @@ -15,6 +16,7 @@ import androidx.compose.foundation.layout.offset
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.size
import androidx.compose.foundation.layout.wrapContentHeight
import androidx.compose.foundation.shape.RoundedCornerShape
import androidx.compose.material.Icon
import androidx.compose.material3.MaterialTheme
import androidx.compose.material3.Text
Expand Down Expand Up @@ -182,6 +184,14 @@ fun MainCalendarPage(
}
}

} else {
Box(
modifier = Modifier
.padding(horizontal = 20.dp)
.fillMaxWidth()
.background(MaterialTheme.bbibbiScheme.backgroundSecondary, RoundedCornerShape(24.dp))
.aspectRatio(335.0f/220)
)
}
Spacer(modifier = Modifier.height(24.dp))
StaticCalendar(
Expand Down