-
Notifications
You must be signed in to change notification settings - Fork 3
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
5초 카운트 타이머 촬영 #9
Labels
Milestone
Comments
|
viewModelScope.launch {
delay(1000L)
val counter = object : CountDownTimer(time, 5000) {
override fun onTick(millisUntilFinished: Long) {
captureAndSave(context)
}
override fun onFinish() {
this.cancel()
}
}
} |
DokySp
added
feature/external
feature-external
New Implementation
New feature
and removed
New Implementation
New feature
labels
Sep 24, 2024
ViewModel에 아래와 같이 코드를 구성하면 쉽게 해결될 것 같습니다.
|
ing03201
added a commit
to ing03201/FourCutTogether
that referenced
this issue
Oct 5, 2024
ing03201
added a commit
to ing03201/FourCutTogether
that referenced
this issue
Oct 5, 2024
ing03201
added a commit
that referenced
this issue
Oct 6, 2024
ing03201
added a commit
that referenced
this issue
Oct 6, 2024
capture 통신과 Internal camera의 경우 다르게 구현해야하므로 hold |
phase3로 이동합니다 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
[Descriptions]
The text was updated successfully, but these errors were encountered: