Skip to content

Commit

Permalink
Add an usage of material3:adaptive:adaptive to the MPP demo
Browse files Browse the repository at this point in the history
  • Loading branch information
terrakok committed Jul 30, 2024
1 parent bd01cf5 commit 06914eb
Show file tree
Hide file tree
Showing 3 changed files with 41 additions and 0 deletions.
1 change: 1 addition & 0 deletions compose/mpp/demo/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -154,6 +154,7 @@ kotlin {
implementation(project(":compose:foundation:foundation-layout"))
implementation(project(":compose:material3:material3"))
implementation(project(":compose:material3:material3-window-size-class"))
implementation(project(":compose:material3:adaptive:adaptive"))
implementation(project(":compose:material:material"))
implementation(project(":compose:mpp"))
implementation(project(":compose:runtime:runtime"))
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
/*
* Copyright 2024 The Android Open Source Project
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/

package androidx.compose.mpp.demo.components

import androidx.compose.foundation.layout.Box
import androidx.compose.foundation.layout.fillMaxSize
import androidx.compose.foundation.layout.padding
import androidx.compose.material3.Text
import androidx.compose.material3.adaptive.currentWindowAdaptiveInfo
import androidx.compose.runtime.Composable
import androidx.compose.ui.Alignment
import androidx.compose.ui.Modifier
import androidx.compose.ui.unit.dp

@Composable
fun AdaptiveExample() {
Box(modifier = Modifier.fillMaxSize().padding(40.dp), contentAlignment = Alignment.Center) {
val adaptiveInfo = currentWindowAdaptiveInfo()
Text("WindowAdaptiveInfo\n" +
"WidthSizeClass=${adaptiveInfo.windowSizeClass.windowWidthSizeClass}\n" +
"HeightSizeClass=${adaptiveInfo.windowSizeClass.windowHeightSizeClass}\n" +
"isTabletop=${adaptiveInfo.windowPosture.isTabletop}\n" +
"hingeList=${adaptiveInfo.windowPosture.hingeList}")
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -60,4 +60,5 @@ val Components = Screen.Selection(
Screen.Example("NestedScroll") { NestedScrollExample() },
Screen.Example("Selection") { SelectionExample() },
Screen.Example("Pager") { PagerExample() },
Screen.Example("WindowAdaptiveInfo") { AdaptiveExample() },
)

0 comments on commit 06914eb

Please sign in to comment.