|
|
|
@ -17,7 +17,6 @@
|
|
|
|
|
package com.google.samples.apps.niacatalog.ui
|
|
|
|
|
|
|
|
|
|
import androidx.compose.foundation.layout.Arrangement
|
|
|
|
|
import androidx.compose.foundation.layout.Row
|
|
|
|
|
import androidx.compose.foundation.layout.WindowInsets
|
|
|
|
|
import androidx.compose.foundation.layout.add
|
|
|
|
|
import androidx.compose.foundation.layout.asPaddingValues
|
|
|
|
@ -37,6 +36,7 @@ import androidx.compose.runtime.setValue
|
|
|
|
|
import androidx.compose.ui.Modifier
|
|
|
|
|
import androidx.compose.ui.res.painterResource
|
|
|
|
|
import androidx.compose.ui.unit.dp
|
|
|
|
|
import com.google.accompanist.flowlayout.FlowRow
|
|
|
|
|
import com.google.samples.apps.nowinandroid.core.ui.component.NiaDropdownMenuButton
|
|
|
|
|
import com.google.samples.apps.nowinandroid.core.ui.component.NiaFilledButton
|
|
|
|
|
import com.google.samples.apps.nowinandroid.core.ui.component.NiaFilterChip
|
|
|
|
@ -76,7 +76,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Buttons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(onClick = {}) {
|
|
|
|
|
Text(text = "Enabled")
|
|
|
|
|
}
|
|
|
|
@ -90,7 +90,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Disabled buttons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
enabled = false
|
|
|
|
@ -113,7 +113,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Buttons with leading icons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
text = { Text(text = "Enabled") },
|
|
|
|
@ -139,7 +139,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Disabled buttons with leading icons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
enabled = false,
|
|
|
|
@ -168,7 +168,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Buttons with trailing icons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
text = { Text(text = "Enabled") },
|
|
|
|
@ -194,7 +194,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Disabled buttons with trailing icons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
enabled = false,
|
|
|
|
@ -223,7 +223,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Small buttons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
small = true
|
|
|
|
@ -246,7 +246,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Disabled small buttons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
enabled = false,
|
|
|
|
@ -272,7 +272,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Small buttons with leading icons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
small = true,
|
|
|
|
@ -306,7 +306,7 @@ fun NiaCatalog() {
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
enabled = false,
|
|
|
|
@ -338,7 +338,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Small buttons with trailing icons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
small = true,
|
|
|
|
@ -372,7 +372,7 @@ fun NiaCatalog() {
|
|
|
|
|
)
|
|
|
|
|
}
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
NiaFilledButton(
|
|
|
|
|
onClick = {},
|
|
|
|
|
enabled = false,
|
|
|
|
@ -413,7 +413,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Chips", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
var firstChecked by remember { mutableStateOf(false) }
|
|
|
|
|
NiaFilterChip(
|
|
|
|
|
checked = firstChecked,
|
|
|
|
@ -437,7 +437,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Toggle buttons", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
var firstChecked by remember { mutableStateOf(false) }
|
|
|
|
|
NiaToggleButton(
|
|
|
|
|
checked = firstChecked,
|
|
|
|
@ -498,7 +498,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("View toggle", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
var firstExpanded by remember { mutableStateOf(false) }
|
|
|
|
|
NiaViewToggleButton(
|
|
|
|
|
expanded = firstExpanded,
|
|
|
|
@ -517,7 +517,7 @@ fun NiaCatalog() {
|
|
|
|
|
}
|
|
|
|
|
item { Text("Tags", Modifier.padding(top = 16.dp)) }
|
|
|
|
|
item {
|
|
|
|
|
Row(horizontalArrangement = Arrangement.spacedBy(16.dp)) {
|
|
|
|
|
FlowRow(mainAxisSpacing = 16.dp) {
|
|
|
|
|
var firstFollowed by remember { mutableStateOf(false) }
|
|
|
|
|
NiaTopicTag(
|
|
|
|
|
followed = firstFollowed,
|
|
|
|
|