├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── pull_request_template.md └── workflows │ ├── build_test_check.yml │ ├── publish_composetesting_ado.yml │ ├── publish_composetesting_mavencentral.yml │ ├── publish_draganddrop_ado.yml │ ├── publish_draganddrop_mavencentral.yml │ ├── publish_twopanelayout_ado.yml │ ├── publish_twopanelayout_mavencentral.yml │ ├── publish_windowstate_ado.yml │ └── publish_windowstate_mavencentral.yml ├── .gitignore ├── CODE_OF_CONDUCT.md ├── ComposeTesting ├── .gitignore ├── README.md ├── build.gradle ├── dependencies.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ktlint.gradle ├── library │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── microsoft │ │ └── device │ │ └── dualscreen │ │ └── testing │ │ └── compose │ │ ├── FoldingFeatureHelper.kt │ │ ├── StringHelper.kt │ │ └── TestRules.kt ├── publishing.gradle ├── sample │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── testing │ │ │ └── sample │ │ │ ├── AnnotationTest.kt │ │ │ ├── FoldingFeatureTest.kt │ │ │ ├── StringTest.kt │ │ │ └── SwipeTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── testing │ │ │ └── sample │ │ │ ├── MainActivity.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values-night │ │ └── themes.xml │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml └── settings.gradle ├── DragAndDrop ├── .gitignore ├── README.md ├── build.gradle ├── dependencies.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ktlint.gradle ├── library │ ├── .gitignore │ ├── build.gradle │ ├── consumer-rules.pro │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── microsoft │ │ └── device │ │ └── dualscreen │ │ └── draganddrop │ │ ├── DragContainer.kt │ │ ├── DragData.kt │ │ ├── DropContainer.kt │ │ └── MimeType.kt ├── publishing.gradle ├── sample │ ├── .gitignore │ ├── build.gradle │ ├── proguard-rules.pro │ └── src │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── draganddrop │ │ │ ├── MainActivity.kt │ │ │ └── ui │ │ │ ├── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ │ └── view │ │ │ ├── DragPane.kt │ │ │ └── DropPane.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── drag_and_drop_image.png │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml │ │ └── xml │ │ ├── backup_rules.xml │ │ └── data_extraction_rules.xml ├── screenshots │ ├── dual_screen.gif │ └── single_screen.gif └── settings.gradle ├── LICENSE ├── README.md ├── SECURITY.md ├── SUPPORT.md ├── TwoPaneLayout ├── .gitignore ├── README.md ├── build.gradle ├── dependencies.gradle ├── gradle.properties ├── gradle │ └── wrapper │ │ ├── gradle-wrapper.jar │ │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ktlint.gradle ├── library │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ ├── AndroidManifest.xml │ │ └── java │ │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── twopanelayout │ │ │ ├── LayoutTest.kt │ │ │ ├── NavigateUpToTest.kt │ │ │ ├── NavigationTest.kt │ │ │ ├── TestActivity.kt │ │ │ └── TwoPaneTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ └── java │ │ └── com │ │ └── microsoft │ │ └── device │ │ └── dualscreen │ │ └── twopanelayout │ │ ├── Screen.kt │ │ ├── TwoPaneLayout.kt │ │ ├── TwoPaneMode.kt │ │ ├── TwoPaneScope.kt │ │ ├── common │ │ ├── PaneSizeUtils.kt │ │ └── TwoPaneLayoutMeasure.kt │ │ ├── twopanelayout │ │ ├── TwoPaneLayoutCore.kt │ │ ├── TwoPaneScopeInstance.kt │ │ └── TwoPaneScopeTest.kt │ │ └── twopanelayoutnav │ │ ├── TwoPaneBackStackEntry.kt │ │ ├── TwoPaneLayoutNavCore.kt │ │ ├── TwoPaneNavScopeInstance.kt │ │ └── TwoPaneNavScopeTest.kt ├── nav_sample │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── twopanelayout │ │ │ ├── BasicDestinationTest.kt │ │ │ └── NavSampleTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── twopanelayout │ │ │ ├── BasicDestination.kt │ │ │ ├── MainActivity.kt │ │ │ ├── SampleDestination.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ ├── pane_1_red.png │ │ ├── pane_1_yellow.png │ │ ├── pane_2_green.png │ │ └── pane_2_purple.png │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml ├── publishing.gradle ├── sample │ ├── .gitignore │ ├── build.gradle │ └── src │ │ ├── androidTest │ │ └── java │ │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── twopanelayout │ │ │ ├── SampleTest.kt │ │ │ └── TopBarTest.kt │ │ └── main │ │ ├── AndroidManifest.xml │ │ ├── java │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── twopanelayout │ │ │ ├── MainActivity.kt │ │ │ └── ui │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Shape.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ │ └── res │ │ ├── drawable-v24 │ │ └── ic_launcher_foreground.xml │ │ ├── drawable │ │ └── ic_launcher_background.xml │ │ ├── mipmap-anydpi-v26 │ │ ├── ic_launcher.xml │ │ └── ic_launcher_round.xml │ │ ├── mipmap-hdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-mdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ ├── mipmap-xxxhdpi │ │ ├── ic_launcher.webp │ │ └── ic_launcher_round.webp │ │ └── values │ │ ├── colors.xml │ │ ├── strings.xml │ │ └── themes.xml ├── screenshots │ ├── foldable.png │ ├── single-horizontal.png │ ├── single-vertical.png │ ├── surfaceduo.png │ ├── tablet.png │ └── twopanelayoutnav.gif └── settings.gradle └── WindowState ├── .gitignore ├── README.md ├── build.gradle ├── dependencies.gradle ├── gradle.properties ├── gradle └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── ktlint.gradle ├── library ├── .gitignore ├── build.gradle ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── microsoft │ │ └── device │ │ └── dualscreen │ │ └── windowstate │ │ ├── WindowStateComposeTest.kt │ │ └── WindowStateTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── microsoft │ │ │ └── device │ │ │ └── dualscreen │ │ │ └── windowstate │ │ │ ├── Dimension.kt │ │ │ ├── FoldState.kt │ │ │ ├── WindowMode.kt │ │ │ ├── WindowState.kt │ │ │ └── WindowStateHelper.kt │ └── res │ │ └── values │ │ └── strings.xml │ └── test │ └── java │ └── com │ └── microsoft │ └── device │ └── dualscreen │ └── windowstate │ └── WindowModeTest.kt ├── publishing.gradle ├── sample ├── .gitignore ├── build.gradle ├── proguard-rules.pro └── src │ └── main │ ├── AndroidManifest.xml │ ├── java │ └── com │ │ └── microsoft │ │ └── device │ │ └── dualscreen │ │ └── windowstate │ │ ├── MainActivity.kt │ │ └── ui │ │ └── theme │ │ ├── Color.kt │ │ ├── Shape.kt │ │ ├── Theme.kt │ │ └── Type.kt │ └── res │ ├── drawable-v24 │ └── ic_launcher_foreground.xml │ ├── drawable │ └── ic_launcher_background.xml │ ├── mipmap-anydpi-v26 │ ├── ic_launcher.xml │ └── ic_launcher_round.xml │ ├── mipmap-hdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-mdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── mipmap-xxxhdpi │ ├── ic_launcher.webp │ └── ic_launcher_round.webp │ ├── values-night │ └── themes.xml │ └── values │ ├── colors.xml │ ├── strings.xml │ └── themes.xml ├── screenshots ├── postures-overview.png ├── sample_6.7.png ├── sample_7.6.png ├── sample_8.png ├── sample_pixelc.png ├── sample_surfaceduo2_spanned.png └── sample_surfaceduo2_unspanned.png └── settings.gradle /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/build_test_check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/build_test_check.yml -------------------------------------------------------------------------------- /.github/workflows/publish_composetesting_ado.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/publish_composetesting_ado.yml -------------------------------------------------------------------------------- /.github/workflows/publish_composetesting_mavencentral.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/publish_composetesting_mavencentral.yml -------------------------------------------------------------------------------- /.github/workflows/publish_draganddrop_ado.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/publish_draganddrop_ado.yml -------------------------------------------------------------------------------- /.github/workflows/publish_draganddrop_mavencentral.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/publish_draganddrop_mavencentral.yml -------------------------------------------------------------------------------- /.github/workflows/publish_twopanelayout_ado.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/publish_twopanelayout_ado.yml -------------------------------------------------------------------------------- /.github/workflows/publish_twopanelayout_mavencentral.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/publish_twopanelayout_mavencentral.yml -------------------------------------------------------------------------------- /.github/workflows/publish_windowstate_ado.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/publish_windowstate_ado.yml -------------------------------------------------------------------------------- /.github/workflows/publish_windowstate_mavencentral.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.github/workflows/publish_windowstate_mavencentral.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/.gitignore -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /ComposeTesting/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/.gitignore -------------------------------------------------------------------------------- /ComposeTesting/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/README.md -------------------------------------------------------------------------------- /ComposeTesting/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/build.gradle -------------------------------------------------------------------------------- /ComposeTesting/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/dependencies.gradle -------------------------------------------------------------------------------- /ComposeTesting/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/gradle.properties -------------------------------------------------------------------------------- /ComposeTesting/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /ComposeTesting/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /ComposeTesting/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/gradlew -------------------------------------------------------------------------------- /ComposeTesting/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/gradlew.bat -------------------------------------------------------------------------------- /ComposeTesting/ktlint.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/ktlint.gradle -------------------------------------------------------------------------------- /ComposeTesting/library/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ComposeTesting/library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/library/build.gradle -------------------------------------------------------------------------------- /ComposeTesting/library/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ComposeTesting/library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/library/proguard-rules.pro -------------------------------------------------------------------------------- /ComposeTesting/library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTesting/library/src/main/java/com/microsoft/device/dualscreen/testing/compose/FoldingFeatureHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/library/src/main/java/com/microsoft/device/dualscreen/testing/compose/FoldingFeatureHelper.kt -------------------------------------------------------------------------------- /ComposeTesting/library/src/main/java/com/microsoft/device/dualscreen/testing/compose/StringHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/library/src/main/java/com/microsoft/device/dualscreen/testing/compose/StringHelper.kt -------------------------------------------------------------------------------- /ComposeTesting/library/src/main/java/com/microsoft/device/dualscreen/testing/compose/TestRules.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/library/src/main/java/com/microsoft/device/dualscreen/testing/compose/TestRules.kt -------------------------------------------------------------------------------- /ComposeTesting/publishing.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/publishing.gradle -------------------------------------------------------------------------------- /ComposeTesting/sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /ComposeTesting/sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/build.gradle -------------------------------------------------------------------------------- /ComposeTesting/sample/src/androidTest/java/com/microsoft/device/dualscreen/testing/sample/AnnotationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/androidTest/java/com/microsoft/device/dualscreen/testing/sample/AnnotationTest.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/androidTest/java/com/microsoft/device/dualscreen/testing/sample/FoldingFeatureTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/androidTest/java/com/microsoft/device/dualscreen/testing/sample/FoldingFeatureTest.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/androidTest/java/com/microsoft/device/dualscreen/testing/sample/StringTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/androidTest/java/com/microsoft/device/dualscreen/testing/sample/StringTest.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/androidTest/java/com/microsoft/device/dualscreen/testing/sample/SwipeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/androidTest/java/com/microsoft/device/dualscreen/testing/sample/SwipeTest.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/MainActivity.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/ui/theme/Color.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/ui/theme/Shape.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/ui/theme/Theme.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/java/com/microsoft/device/dualscreen/testing/sample/ui/theme/Type.kt -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /ComposeTesting/sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/ComposeTesting/sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /ComposeTesting/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "ComposeTesting" 2 | include ':library', ':sample' 3 | -------------------------------------------------------------------------------- /DragAndDrop/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/.gitignore -------------------------------------------------------------------------------- /DragAndDrop/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/README.md -------------------------------------------------------------------------------- /DragAndDrop/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/build.gradle -------------------------------------------------------------------------------- /DragAndDrop/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/dependencies.gradle -------------------------------------------------------------------------------- /DragAndDrop/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/gradle.properties -------------------------------------------------------------------------------- /DragAndDrop/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /DragAndDrop/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /DragAndDrop/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/gradlew -------------------------------------------------------------------------------- /DragAndDrop/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/gradlew.bat -------------------------------------------------------------------------------- /DragAndDrop/ktlint.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/ktlint.gradle -------------------------------------------------------------------------------- /DragAndDrop/library/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /DragAndDrop/library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/library/build.gradle -------------------------------------------------------------------------------- /DragAndDrop/library/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /DragAndDrop/library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/library/proguard-rules.pro -------------------------------------------------------------------------------- /DragAndDrop/library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /DragAndDrop/library/src/main/java/com/microsoft/device/dualscreen/draganddrop/DragContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/library/src/main/java/com/microsoft/device/dualscreen/draganddrop/DragContainer.kt -------------------------------------------------------------------------------- /DragAndDrop/library/src/main/java/com/microsoft/device/dualscreen/draganddrop/DragData.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/library/src/main/java/com/microsoft/device/dualscreen/draganddrop/DragData.kt -------------------------------------------------------------------------------- /DragAndDrop/library/src/main/java/com/microsoft/device/dualscreen/draganddrop/DropContainer.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/library/src/main/java/com/microsoft/device/dualscreen/draganddrop/DropContainer.kt -------------------------------------------------------------------------------- /DragAndDrop/library/src/main/java/com/microsoft/device/dualscreen/draganddrop/MimeType.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/library/src/main/java/com/microsoft/device/dualscreen/draganddrop/MimeType.kt -------------------------------------------------------------------------------- /DragAndDrop/publishing.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/publishing.gradle -------------------------------------------------------------------------------- /DragAndDrop/sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /DragAndDrop/sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/build.gradle -------------------------------------------------------------------------------- /DragAndDrop/sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/proguard-rules.pro -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/MainActivity.kt -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/theme/Color.kt -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/theme/Shape.kt -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/theme/Theme.kt -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/theme/Type.kt -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/view/DragPane.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/view/DragPane.kt -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/view/DropPane.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/java/com/microsoft/device/dualscreen/draganddrop/ui/view/DropPane.kt -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/drawable/drag_and_drop_image.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/drawable/drag_and_drop_image.png -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /DragAndDrop/sample/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/sample/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /DragAndDrop/screenshots/dual_screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/screenshots/dual_screen.gif -------------------------------------------------------------------------------- /DragAndDrop/screenshots/single_screen.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/DragAndDrop/screenshots/single_screen.gif -------------------------------------------------------------------------------- /DragAndDrop/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "DragAndDrop" 2 | include ':library', ':sample' 3 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/SECURITY.md -------------------------------------------------------------------------------- /SUPPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/SUPPORT.md -------------------------------------------------------------------------------- /TwoPaneLayout/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/.gitignore -------------------------------------------------------------------------------- /TwoPaneLayout/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/README.md -------------------------------------------------------------------------------- /TwoPaneLayout/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/build.gradle -------------------------------------------------------------------------------- /TwoPaneLayout/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/dependencies.gradle -------------------------------------------------------------------------------- /TwoPaneLayout/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/gradle.properties -------------------------------------------------------------------------------- /TwoPaneLayout/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /TwoPaneLayout/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /TwoPaneLayout/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/gradlew -------------------------------------------------------------------------------- /TwoPaneLayout/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/gradlew.bat -------------------------------------------------------------------------------- /TwoPaneLayout/ktlint.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/ktlint.gradle -------------------------------------------------------------------------------- /TwoPaneLayout/library/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /TwoPaneLayout/library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/build.gradle -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/androidTest/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/androidTest/AndroidManifest.xml -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/LayoutTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/LayoutTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/NavigateUpToTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/NavigateUpToTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/NavigationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/NavigationTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/TestActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/TestActivity.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/TwoPaneTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/TwoPaneTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/Screen.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/Screen.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/TwoPaneLayout.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/TwoPaneLayout.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/TwoPaneMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/TwoPaneMode.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/TwoPaneScope.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/TwoPaneScope.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/common/PaneSizeUtils.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/common/PaneSizeUtils.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/common/TwoPaneLayoutMeasure.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/common/TwoPaneLayoutMeasure.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayout/TwoPaneLayoutCore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayout/TwoPaneLayoutCore.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayout/TwoPaneScopeInstance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayout/TwoPaneScopeInstance.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayout/TwoPaneScopeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayout/TwoPaneScopeTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayoutnav/TwoPaneBackStackEntry.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayoutnav/TwoPaneBackStackEntry.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayoutnav/TwoPaneLayoutNavCore.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayoutnav/TwoPaneLayoutNavCore.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayoutnav/TwoPaneNavScopeInstance.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayoutnav/TwoPaneNavScopeInstance.kt -------------------------------------------------------------------------------- /TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayoutnav/TwoPaneNavScopeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/library/src/main/java/com/microsoft/device/dualscreen/twopanelayout/twopanelayoutnav/TwoPaneNavScopeTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/build.gradle -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/BasicDestinationTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/BasicDestinationTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/NavSampleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/NavSampleTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/BasicDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/BasicDestination.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/MainActivity.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/SampleDestination.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/SampleDestination.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Color.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Shape.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Theme.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Type.kt -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/drawable/pane_1_red.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/drawable/pane_1_red.png -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/drawable/pane_1_yellow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/drawable/pane_1_yellow.png -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/drawable/pane_2_green.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/drawable/pane_2_green.png -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/drawable/pane_2_purple.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/drawable/pane_2_purple.png -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TwoPaneLayout/nav_sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/nav_sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /TwoPaneLayout/publishing.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/publishing.gradle -------------------------------------------------------------------------------- /TwoPaneLayout/sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /TwoPaneLayout/sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/build.gradle -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/SampleTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/SampleTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/TopBarTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/androidTest/java/com/microsoft/device/dualscreen/twopanelayout/TopBarTest.kt -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/MainActivity.kt -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Color.kt -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Shape.kt -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Theme.kt -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/java/com/microsoft/device/dualscreen/twopanelayout/ui/theme/Type.kt -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /TwoPaneLayout/sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /TwoPaneLayout/screenshots/foldable.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/screenshots/foldable.png -------------------------------------------------------------------------------- /TwoPaneLayout/screenshots/single-horizontal.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/screenshots/single-horizontal.png -------------------------------------------------------------------------------- /TwoPaneLayout/screenshots/single-vertical.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/screenshots/single-vertical.png -------------------------------------------------------------------------------- /TwoPaneLayout/screenshots/surfaceduo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/screenshots/surfaceduo.png -------------------------------------------------------------------------------- /TwoPaneLayout/screenshots/tablet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/screenshots/tablet.png -------------------------------------------------------------------------------- /TwoPaneLayout/screenshots/twopanelayoutnav.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/screenshots/twopanelayoutnav.gif -------------------------------------------------------------------------------- /TwoPaneLayout/settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/TwoPaneLayout/settings.gradle -------------------------------------------------------------------------------- /WindowState/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/.gitignore -------------------------------------------------------------------------------- /WindowState/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/README.md -------------------------------------------------------------------------------- /WindowState/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/build.gradle -------------------------------------------------------------------------------- /WindowState/dependencies.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/dependencies.gradle -------------------------------------------------------------------------------- /WindowState/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/gradle.properties -------------------------------------------------------------------------------- /WindowState/gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /WindowState/gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /WindowState/gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/gradlew -------------------------------------------------------------------------------- /WindowState/gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/gradlew.bat -------------------------------------------------------------------------------- /WindowState/ktlint.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/ktlint.gradle -------------------------------------------------------------------------------- /WindowState/library/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /WindowState/library/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/build.gradle -------------------------------------------------------------------------------- /WindowState/library/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /WindowState/library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/proguard-rules.pro -------------------------------------------------------------------------------- /WindowState/library/src/androidTest/java/com/microsoft/device/dualscreen/windowstate/WindowStateComposeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/androidTest/java/com/microsoft/device/dualscreen/windowstate/WindowStateComposeTest.kt -------------------------------------------------------------------------------- /WindowState/library/src/androidTest/java/com/microsoft/device/dualscreen/windowstate/WindowStateTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/androidTest/java/com/microsoft/device/dualscreen/windowstate/WindowStateTest.kt -------------------------------------------------------------------------------- /WindowState/library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/Dimension.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/Dimension.kt -------------------------------------------------------------------------------- /WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/FoldState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/FoldState.kt -------------------------------------------------------------------------------- /WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/WindowMode.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/WindowMode.kt -------------------------------------------------------------------------------- /WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/WindowState.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/WindowState.kt -------------------------------------------------------------------------------- /WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/WindowStateHelper.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/main/java/com/microsoft/device/dualscreen/windowstate/WindowStateHelper.kt -------------------------------------------------------------------------------- /WindowState/library/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /WindowState/library/src/test/java/com/microsoft/device/dualscreen/windowstate/WindowModeTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/library/src/test/java/com/microsoft/device/dualscreen/windowstate/WindowModeTest.kt -------------------------------------------------------------------------------- /WindowState/publishing.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/publishing.gradle -------------------------------------------------------------------------------- /WindowState/sample/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /WindowState/sample/build.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/build.gradle -------------------------------------------------------------------------------- /WindowState/sample/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/proguard-rules.pro -------------------------------------------------------------------------------- /WindowState/sample/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/MainActivity.kt -------------------------------------------------------------------------------- /WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/ui/theme/Color.kt -------------------------------------------------------------------------------- /WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/ui/theme/Shape.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/ui/theme/Shape.kt -------------------------------------------------------------------------------- /WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/ui/theme/Theme.kt -------------------------------------------------------------------------------- /WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/java/com/microsoft/device/dualscreen/windowstate/ui/theme/Type.kt -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/values-night/themes.xml -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /WindowState/sample/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/sample/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /WindowState/screenshots/postures-overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/screenshots/postures-overview.png -------------------------------------------------------------------------------- /WindowState/screenshots/sample_6.7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/screenshots/sample_6.7.png -------------------------------------------------------------------------------- /WindowState/screenshots/sample_7.6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/screenshots/sample_7.6.png -------------------------------------------------------------------------------- /WindowState/screenshots/sample_8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/screenshots/sample_8.png -------------------------------------------------------------------------------- /WindowState/screenshots/sample_pixelc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/screenshots/sample_pixelc.png -------------------------------------------------------------------------------- /WindowState/screenshots/sample_surfaceduo2_spanned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/screenshots/sample_surfaceduo2_spanned.png -------------------------------------------------------------------------------- /WindowState/screenshots/sample_surfaceduo2_unspanned.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/microsoft/surface-duo-compose-sdk/HEAD/WindowState/screenshots/sample_surfaceduo2_unspanned.png -------------------------------------------------------------------------------- /WindowState/settings.gradle: -------------------------------------------------------------------------------- 1 | rootProject.name = "WindowState" 2 | include ':library', ':sample' 3 | --------------------------------------------------------------------------------