Skip to content

Instantly share code, notes, and snippets.

View pablobaldez's full-sized avatar

Pablo Baldez pablobaldez

View GitHub Profile
@pablobaldez
pablobaldez / MyScreen.kt
Created April 22, 2021 19:08
Theme usage
@Composable
fun MyScreen() {
NebraskaTheme(Trade) {
Column {
Text(text = "text with status positive", color = LocalColorSchema.current.status.positive.color)
Button(onClick = { /*TODO*/ }) {
Text(text = "Trade Button")
}
}
}
@pablobaldez
pablobaldez / NebraskaTheme2.kt
Created April 22, 2021 19:04
NebraskaTheme com Local
@Composable
fun NebraskaTheme(
group: Group<ColorContext>,
content: @Composable () -> Unit
) {
val isSystemInDarkTheme = isSystemInDarkTheme()
val schema = group.schema(isSystemInDarkTheme)
CompositionLocalProvider(LocalColorSchema provides schema) {
MaterialTheme(
colors = LocalColorSchema.current.materialColors,
@pablobaldez
pablobaldez / ColorSchema.kt
Created April 22, 2021 15:57
ColorSchema
data class ColorSchema(
val context: ColorContext,
val text: ColorText,
val background: ColorBackground,
val divider: ColorDivider,
val element: ColorElement,
val base: ColorBase,
val status: ColorStatus,
val monetary: ColorMonetary,
val progress: ColorProgress,
@pablobaldez
pablobaldez / ColorContext.kt
Created April 20, 2021 16:55
ColorContext sample
data class ColorContext(
val primary: Int,
val primaryHover: Int,
val primaryActive: Int,
val link: Int,
val overPrimary: Int
)
object Brand : Group<ColorContext> {
override val light = ColorContext(
@pablobaldez
pablobaldez / ColorStatus.kt
Created April 20, 2021 16:47
Implementation of a group
data class ColorStatus(
val positive: Int,
val alert: Int,
val negative: Int,
val info: Int,
val positiveBackground: Int,
val alertBackground: Int,
val negativeBackground: Int,
val infoBackground: Int
) {
@pablobaldez
pablobaldez / Group.kt
Created April 20, 2021 14:37
Group interface
interface Group<T> {
/**
* the light mode group of colors
*/
val light: T
/**
* the dark mode group of colors
*/
val dark: T
@pablobaldez
pablobaldez / RowWithTrl.kt
Created March 12, 2021 19:22
Row with rtl provider
@Composable
fun RegularRow(
modifier: Modifier = Modifier,
leftIcon: @Composable (RowScope.() -> Unit)? = null,
detail: @Composable (() -> Unit)? = null,
rightIcon: @Composable (RowScope.() -> Unit)? = null,
title: @Composable () -> Unit
) {
FoundationRow(
modifier = modifier.wrapContentHeight()
@pablobaldez
pablobaldez / TwoLineTextStyle.kt
Last active March 12, 2021 21:30
TwoLine with text style
@Composable
fun TwoLine(
modifier: Modifier = Modifier,
secondary: @Composable () -> Unit,
primary: @Composable () -> Unit,
) {
val styledPrimary = applyStyle(
textStyle = MaterialTheme.typography.subtitle1,
alpha = ContentAlpha.high,
content = primary
@pablobaldez
pablobaldez / RowWithTwoLine.kt
Created March 12, 2021 18:40
Sample with two line and single line row
@Composable
fun RowPreview() {
Column {
FoundationRow {
Text(text = "Single line")
}
Divider(modifier = Modifier.dividerSize())
FoundationRow {
TwoLine(
primary = { Text(text = "Primary") },
@pablobaldez
pablobaldez / TwoLine.kt
Created March 12, 2021 18:21
TwoLine texts with Composable
@Composable
fun TwoLine(
modifier: Modifier = Modifier,
secondary: @Composable () -> Unit,
primary: @Composable () -> Unit,
) {
Column(modifier = modifier) {
primary()
secondary()
}