-
Notifications
You must be signed in to change notification settings - Fork 2
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
[Fix] 오류 & 최종 디자인 수정 #134
[Fix] 오류 & 최종 디자인 수정 #134
Conversation
var selectedEventId by remember { mutableLongStateOf(-1) } | ||
var memoText by remember { mutableStateOf("") } | ||
var isContinuousState by rememberSaveable { mutableStateOf(false) } | ||
var historyTypeState by rememberSaveable { mutableStateOf(HistoryRegistrationType.TAKE) } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거 enum 이라 bundle 에 못넣어요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
HistoryRegistrationType요??
이거 잘 저장되는거 같은데 다른 문제가 있나요
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
다시 찾아보니 enum 은 Serializable 이네요
https://developer.android.com/reference/kotlin/java/lang/Enum
문제 없을 것 같습니다
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
이거 LocalDate를 bundle에 넣으려면 년월일 나눠서 array로 저장하는게 최선인가요?
|
||
var isViewUnRecordMessage by remember { mutableStateOf("") } | ||
var isViewUnRecordMessage by rememberSaveable { mutableStateOf("") } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
필요한 것만 saveable 하게 만들어주세요
fun navigateToOnBoarding(kakaoUserModel: KakaoUserInformationModel) { | ||
appState.navController.sendKakaoUserModel(kakaoUserModel) | ||
} | ||
|
||
fun navigateToHome() { | ||
appState.navController.navigate(HomeConstant.ROUTE) { | ||
appState.navController.navigate(HomeConstant.ROUTE_STRUCTURE) { |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
의도된게 맞나요?
설명
참고
체크리스트