Skip to content

Commit

Permalink
update IntroScreen design
Browse files Browse the repository at this point in the history
  • Loading branch information
egorikftp committed Jul 5, 2024
1 parent 6e260e5 commit 44e4de7
Showing 1 changed file with 6 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -21,12 +21,12 @@ import com.composegears.tiamat.navController
import com.composegears.tiamat.navDestination
import com.composegears.tiamat.navigationSlideInOut
import io.github.composegears.valkyrie.ui.domain.model.Mode
import io.github.composegears.valkyrie.ui.foundation.HorizontalSpacer
import io.github.composegears.valkyrie.ui.foundation.TooltipButton
import io.github.composegears.valkyrie.ui.foundation.VerticalSpacer
import io.github.composegears.valkyrie.ui.domain.model.Mode.IconPack
import io.github.composegears.valkyrie.ui.domain.model.Mode.Simple
import io.github.composegears.valkyrie.ui.domain.model.Mode.Unspecified
import io.github.composegears.valkyrie.ui.foundation.HorizontalSpacer
import io.github.composegears.valkyrie.ui.foundation.TooltipButton
import io.github.composegears.valkyrie.ui.foundation.VerticalSpacer
import io.github.composegears.valkyrie.ui.screen.mode.iconpack.destination.IconPackDestinationScreen
import io.github.composegears.valkyrie.ui.screen.mode.simple.setup.SimpleModeSetupScreen

Expand Down Expand Up @@ -70,21 +70,21 @@ private fun IntroScreenUI(onSelect: (Mode) -> Unit) {
)
VerticalSpacer(42.dp)
Text(
text = "Choose plugin mode",
text = "Choose conversion mode",
style = MaterialTheme.typography.labelSmall,
color = LocalContentColor.current.copy(alpha = 0.5f),
textAlign = TextAlign.Center
)
VerticalSpacer(8.dp)

ModeRow(
title = "Simple mode",
title = "Simple",
tooltipText = "One-click conversion from SVG/XML into ImageVector",
onSelect = { onSelect(Simple) }
)
VerticalSpacer(16.dp)
ModeRow(
title = "IconPack mode",
title = "IconPack",
tooltipText = "Create organized icon pack with an extension property of you pack object and batch export into your project",
onSelect = { onSelect(IconPack) }
)
Expand Down

0 comments on commit 44e4de7

Please sign in to comment.