Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -57,12 +57,11 @@ fun navigation() {
}
}
}
// [START_EXCLUDE]
}

// Implementation of one of the screens in the navigation
@Composable
fun MessageDetail(id: String) {
// [END_EXCLUDE]
// .. Screen level content goes here
val scrollState = rememberTransformingLazyColumnState()

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -170,6 +170,7 @@ fun SnapScrollableScreen() {
// [START android_wear_rotary_input_snap_fling]
val listState = rememberScalingLazyListState()
ScreenScaffold(
scrollState = listState,
scrollIndicator = {
ScrollIndicator(state = listState)
}
Expand Down Expand Up @@ -202,6 +203,7 @@ fun PositionScrollIndicator() {
// [START android_wear_rotary_position_indicator]
val listState = rememberTransformingLazyColumnState()
ScreenScaffold(
scrollState = listState,
scrollIndicator = {
ScrollIndicator(state = listState)
}
Expand Down