Align usage of LOS_HOLLOW nd LOW_FULL
This commit is contained in:
parent
79a36fa9d9
commit
676cbf242c
3 changed files with 4 additions and 3 deletions
|
|
@ -95,7 +95,7 @@ fun LexiconItem(
|
|||
.alignByBaseline(),
|
||||
style = typography.base.titleMedium,
|
||||
color = if (item.isNew) MaterialTheme.colorScheme.primary else MaterialTheme.colorScheme.onSurface,
|
||||
text = if (item.isPlayingCharacter) LOS_FULL else LOS_HOLLOW,
|
||||
text = LOS_FULL,
|
||||
)
|
||||
|
||||
Text(
|
||||
|
|
|
|||
|
|
@ -20,6 +20,7 @@ import androidx.compose.ui.tooling.preview.PreviewParameter
|
|||
import androidx.compose.ui.tooling.preview.PreviewParameterProvider
|
||||
import androidx.compose.ui.unit.dp
|
||||
import com.pixelized.rplexicon.ui.theme.LexiconTheme
|
||||
import com.pixelized.rplexicon.utilitary.LOS_FULL
|
||||
import com.pixelized.rplexicon.utilitary.LOS_HOLLOW
|
||||
import com.pixelized.rplexicon.utilitary.annotateWithDropCap
|
||||
import com.pixelized.rplexicon.utilitary.extentions.cell
|
||||
|
|
@ -73,7 +74,7 @@ fun LocationItem(
|
|||
else -> Modifier.alignByBaseline()
|
||||
},
|
||||
style = typography.base.titleMedium,
|
||||
text = LOS_HOLLOW,
|
||||
text = LOS_FULL,
|
||||
)
|
||||
Text(
|
||||
modifier = when (item.placeholder) {
|
||||
|
|
|
|||
|
|
@ -79,7 +79,7 @@ fun QuestItem(
|
|||
modifier = alignModifier,
|
||||
style = typography.base.titleMedium,
|
||||
color = if (item.isNew) MaterialTheme.colorScheme.primary else MaterialTheme.colorScheme.onSurface,
|
||||
text = if (item.complete) LOS_FULL else LOS_HOLLOW,
|
||||
text = if (item.complete) LOS_HOLLOW else LOS_FULL,
|
||||
)
|
||||
Text(
|
||||
modifier = alignModifier,
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue