-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'develop' of https://github.com/teamterning/Terning-Android
into fix/#253-profile-edit-textfield
- Loading branch information
Showing
16 changed files
with
459 additions
and
515 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
34 changes: 0 additions & 34 deletions
34
feature/src/main/java/com/terning/feature/calendar/calendar/model/CalendarDefault.kt
This file was deleted.
Oops, something went wrong.
7 changes: 6 additions & 1 deletion
7
feature/src/main/java/com/terning/feature/calendar/calendar/model/CalendarUiState.kt
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,11 +1,16 @@ | ||
package com.terning.feature.calendar.calendar.model | ||
|
||
import androidx.compose.foundation.pager.PagerState | ||
import androidx.compose.runtime.compositionLocalOf | ||
import java.time.LocalDate | ||
|
||
data class CalendarUiState( | ||
val selectedDate: LocalDate = LocalDate.now(), | ||
val calendarModel: CalendarModel = CalendarModel(), | ||
val currentPage: Int = 0, | ||
val isListEnabled: Boolean = false, | ||
val isWeekEnabled: Boolean = false | ||
) | ||
|
||
val LocalPagerState = compositionLocalOf<PagerState> { | ||
error("No PagerState provided") | ||
} |
Oops, something went wrong.