Skip to content

Commit

Permalink
Address lint violations
Browse files Browse the repository at this point in the history
  • Loading branch information
oas004 committed Dec 1, 2023
1 parent baedce6 commit bdfb452
Show file tree
Hide file tree
Showing 5 changed files with 15 additions and 17 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -55,4 +55,4 @@ internal fun SampleCompactChipScreen(
)
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -54,4 +54,4 @@ internal fun SampleIconScreen(
}
}
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,6 @@ import com.google.android.horologist.compose.material.Stepper

@Composable
internal fun SampleStepperScreen() {

var value by remember {
mutableFloatStateOf(0f)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -176,67 +176,67 @@ fun SampleWearApp() {
)
}
scrollable(
route = Screen.MaterialButtons.route
route = Screen.MaterialButtons.route,
) {
SampleButtonScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialChips.route
route = Screen.MaterialChips.route,
) {
SampleChipScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialChipIconWithProgress.route
route = Screen.MaterialChipIconWithProgress.route,
) {
SampleChipIconWithProgressScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialCompactChips.route
route = Screen.MaterialCompactChips.route,
) {
SampleCompactChipScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialConfirmation.route
route = Screen.MaterialConfirmation.route,
) {
SampleConfirmationScreen()
}
scrollable(
route = Screen.MaterialIcon.route
route = Screen.MaterialIcon.route,
) {
SampleIconScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialOutlinedChip.route
route = Screen.MaterialOutlinedChip.route,
) {
SampleOutlinedChipScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialOutlinedCompactChip.route
route = Screen.MaterialOutlinedCompactChip.route,
) {
SampleOutlinedCompactChipScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialSplitToggleChip.route
route = Screen.MaterialSplitToggleChip.route,
) {
SampleSplitToggleChipScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialStepper.route
route = Screen.MaterialStepper.route,
) {
SampleStepperScreen()
}
scrollable(
route = Screen.MaterialTitle.route
route = Screen.MaterialTitle.route,
) {
SampleTitleScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialToggleButton.route
route = Screen.MaterialToggleButton.route,
) {
SampleToggleButtonScreen(columnState = it.columnState)
}
scrollable(
route = Screen.MaterialToggleChip.route
route = Screen.MaterialToggleChip.route,
) {
SampleToggleChipScreen(columnState = it.columnState)
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,6 @@ sealed class Screen(
object TimeWithoutSecondsPicker : Screen("timeWithoutSecondsPicker")
object Network : Screen("network")


object MaterialButtons : Screen("materialButtons")
object MaterialChips : Screen("materialChips")
object MaterialChipIconWithProgress : Screen("materialChipIconWithProgress")
Expand Down

0 comments on commit bdfb452

Please sign in to comment.