fenix/app/src/main/java/org/mozilla/fenix/compose/Divider.kt
2022-10-31 12:36:41 -07:00

109 lines
3.0 KiB
Kotlin

/* This Source Code Form is subject to the terms of the Mozilla Public
* License, v. 2.0. If a copy of the MPL was not distributed with this
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */
package org.mozilla.fenix.compose
import android.content.res.Configuration
import androidx.compose.foundation.background
import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.Column
import androidx.compose.foundation.layout.Row
import androidx.compose.foundation.layout.fillMaxHeight
import androidx.compose.foundation.layout.height
import androidx.compose.foundation.layout.padding
import androidx.compose.foundation.layout.width
import androidx.compose.material.Text
import androidx.compose.runtime.Composable
import androidx.compose.ui.Modifier
import androidx.compose.ui.tooling.preview.Preview
import androidx.compose.ui.unit.dp
import org.mozilla.fenix.theme.FirefoxTheme
/**
* Generic divider.
*
* @param modifier [Modifier] used to be applied to the layout of the divider.
*/
@Composable
fun Divider(
modifier: Modifier = Modifier,
) {
androidx.compose.material.Divider(
modifier = modifier,
color = FirefoxTheme.colors.borderPrimary,
)
}
/**
* An example of a vertical divider.
*/
@Composable
@Preview(uiMode = Configuration.UI_MODE_NIGHT_YES)
@Preview(uiMode = Configuration.UI_MODE_NIGHT_NO)
private fun VerticalDividerPreview() {
FirefoxTheme {
Box(
Modifier
.background(FirefoxTheme.colors.layer1)
.height(75.dp),
) {
Row {
Text(
text = "Before the line",
modifier = Modifier.padding(end = 10.dp),
)
Divider(
modifier = Modifier
.fillMaxHeight()
.width(0.5.dp)
.padding(vertical = 10.dp),
)
Text(
text = "After the line",
modifier = Modifier.padding(start = 10.dp),
)
}
}
}
}
/**
* An example of divider usage in a list menu.
*/
@Composable
@Preview(uiMode = Configuration.UI_MODE_NIGHT_YES)
@Preview(uiMode = Configuration.UI_MODE_NIGHT_NO)
private fun HorizontalDividerPreview() {
FirefoxTheme {
Box(
Modifier
.background(FirefoxTheme.colors.layer1)
.width(100.dp)
.height(175.dp),
) {
Column(Modifier.padding(start = 4.dp)) {
Text(text = "New")
Text(text = "Open")
Text(text = "Open Recent")
Divider(modifier = Modifier.padding(vertical = 10.dp, horizontal = 24.dp))
Text(text = "Close")
Text(text = "Save")
Text(text = "Save as")
Text(text = "Rename")
Divider(modifier = Modifier.padding(vertical = 10.dp, horizontal = 24.dp))
}
}
}
}