-
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.
UI: Update BasicJourneyCard to be more dynamic to accept UI changes (#97
- Loading branch information
1 parent
001217b
commit ef161b6
Showing
3 changed files
with
47 additions
and
32 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
26 changes: 26 additions & 0 deletions
26
...gn-system/src/main/kotlin/xyz/ksharma/krail/design/system/components/JourneyDetailCard.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 |
---|---|---|
@@ -0,0 +1,26 @@ | ||
package xyz.ksharma.krail.design.system.components | ||
|
||
import androidx.compose.foundation.layout.Column | ||
import androidx.compose.runtime.Composable | ||
import androidx.compose.ui.Modifier | ||
import xyz.ksharma.krail.design.system.preview.ComponentPreviews | ||
import xyz.ksharma.krail.design.system.theme.KrailTheme | ||
|
||
@Composable | ||
fun JourneyDetailCard(modifier: Modifier = Modifier) { | ||
Column(modifier = modifier) { | ||
|
||
} | ||
} | ||
|
||
// region Previews | ||
|
||
@ComponentPreviews | ||
@Composable | ||
private fun JourneyDetailCardPreview(modifier: Modifier = Modifier) { | ||
KrailTheme { | ||
JourneyDetailCard() | ||
} | ||
} | ||
|
||
// endregion |