We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 788f14d commit 822ac2dCopy full SHA for 822ac2d
wear/src/main/java/com/example/wear/snippets/list/List.kt
@@ -15,6 +15,7 @@
15
*/
16
17
package com.example.wear.snippets.list
18
+
19
import androidx.compose.material.icons.Icons
20
import androidx.compose.material.icons.filled.Build
21
import androidx.compose.runtime.Composable
@@ -107,7 +108,9 @@ fun SnapAndFlingComposeList() {
107
108
const val LARGE_DISPLAY_BREAKPOINT = 225
109
110
@Composable
-fun isLargeDisplay() = LocalConfiguration.current.screenWidthDp >= LARGE_DISPLAY_BREAKPOINT
111
+fun isLargeDisplay() =
112
+ LocalConfiguration.current.screenWidthDp >= LARGE_DISPLAY_BREAKPOINT
113
114
// [START_EXCLUDE]
115
116
fun breakpointDemo() {
0 commit comments