├── .gitignore ├── .idea ├── .gitignore ├── .name ├── appInsightsSettings.xml ├── codeStyles │ ├── Project.xml │ └── codeStyleConfig.xml ├── compiler.xml ├── deploymentTargetDropDown.xml ├── inspectionProfiles │ └── Project_Default.xml ├── kotlinc.xml ├── migrations.xml └── vcs.xml ├── LICENSE ├── README.md ├── README_CN.md ├── app ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── only52607 │ │ └── compose │ │ └── window │ │ └── app │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ ├── java │ │ └── com │ │ │ └── github │ │ │ └── only52607 │ │ │ └── compose │ │ │ └── window │ │ │ └── app │ │ │ ├── MainActivity.kt │ │ │ └── ui │ │ │ ├── DialogPermission.kt │ │ │ ├── FloatingWindowContent.kt │ │ │ ├── FloatingWindowViewModel.kt │ │ │ └── theme │ │ │ ├── Color.kt │ │ │ ├── Theme.kt │ │ │ └── Type.kt │ └── res │ │ ├── drawable │ │ ├── ic_launcher_background.xml │ │ └── ic_launcher_foreground.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 │ └── test │ └── java │ └── com │ └── github │ └── only52607 │ └── compose │ └── window │ └── app │ └── ExampleUnitTest.kt ├── gradle.properties ├── gradle ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── jitpack.yml ├── library ├── .gitignore ├── build.gradle.kts ├── consumer-rules.pro ├── proguard-rules.pro └── src │ ├── androidTest │ └── java │ │ └── com │ │ └── github │ │ └── only52607 │ │ └── compose │ │ └── window │ │ └── ExampleInstrumentedTest.kt │ ├── main │ ├── AndroidManifest.xml │ └── java │ │ ├── androidx │ │ └── compose │ │ │ ├── material3 │ │ │ └── AndroidSystemAlertDialog.kt │ │ │ └── ui │ │ │ └── window │ │ │ └── AndroidSystemDialog.android.kt │ │ └── com │ │ └── github │ │ └── only52607 │ │ └── compose │ │ └── window │ │ ├── ComposeFloatingWindow.kt │ │ ├── Dragger.kt │ │ └── LocalFloatingWindow.kt │ └── test │ └── java │ └── com │ └── github │ └── only52607 │ └── compose │ └── window │ └── ExampleUnitTest.kt ├── preview └── example.gif └── settings.gradle.kts /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/.gitignore -------------------------------------------------------------------------------- /.idea/.name: -------------------------------------------------------------------------------- 1 | ComposeFloatingWindow -------------------------------------------------------------------------------- /.idea/appInsightsSettings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/appInsightsSettings.xml -------------------------------------------------------------------------------- /.idea/codeStyles/Project.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/codeStyles/Project.xml -------------------------------------------------------------------------------- /.idea/codeStyles/codeStyleConfig.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/codeStyles/codeStyleConfig.xml -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/deploymentTargetDropDown.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/deploymentTargetDropDown.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/kotlinc.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/kotlinc.xml -------------------------------------------------------------------------------- /.idea/migrations.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/migrations.xml -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/.idea/vcs.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/README.md -------------------------------------------------------------------------------- /README_CN.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/README_CN.md -------------------------------------------------------------------------------- /app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/build.gradle.kts -------------------------------------------------------------------------------- /app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/proguard-rules.pro -------------------------------------------------------------------------------- /app/src/androidTest/java/com/github/only52607/compose/window/app/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/androidTest/java/com/github/only52607/compose/window/app/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /app/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /app/src/main/java/com/github/only52607/compose/window/app/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/java/com/github/only52607/compose/window/app/MainActivity.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/only52607/compose/window/app/ui/DialogPermission.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/java/com/github/only52607/compose/window/app/ui/DialogPermission.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/only52607/compose/window/app/ui/FloatingWindowContent.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/java/com/github/only52607/compose/window/app/ui/FloatingWindowContent.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/only52607/compose/window/app/ui/FloatingWindowViewModel.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/java/com/github/only52607/compose/window/app/ui/FloatingWindowViewModel.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/only52607/compose/window/app/ui/theme/Color.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/java/com/github/only52607/compose/window/app/ui/theme/Color.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/only52607/compose/window/app/ui/theme/Theme.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/java/com/github/only52607/compose/window/app/ui/theme/Theme.kt -------------------------------------------------------------------------------- /app/src/main/java/com/github/only52607/compose/window/app/ui/theme/Type.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/java/com/github/only52607/compose/window/app/ui/theme/Type.kt -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /app/src/main/res/drawable/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/drawable/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /app/src/main/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/values/colors.xml -------------------------------------------------------------------------------- /app/src/main/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/values/strings.xml -------------------------------------------------------------------------------- /app/src/main/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/values/themes.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/backup_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/xml/backup_rules.xml -------------------------------------------------------------------------------- /app/src/main/res/xml/data_extraction_rules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/main/res/xml/data_extraction_rules.xml -------------------------------------------------------------------------------- /app/src/test/java/com/github/only52607/compose/window/app/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/app/src/test/java/com/github/only52607/compose/window/app/ExampleUnitTest.kt -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/gradlew.bat -------------------------------------------------------------------------------- /jitpack.yml: -------------------------------------------------------------------------------- 1 | jdk: 2 | - openjdk17 3 | -------------------------------------------------------------------------------- /library/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /library/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/build.gradle.kts -------------------------------------------------------------------------------- /library/consumer-rules.pro: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /library/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/proguard-rules.pro -------------------------------------------------------------------------------- /library/src/androidTest/java/com/github/only52607/compose/window/ExampleInstrumentedTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/src/androidTest/java/com/github/only52607/compose/window/ExampleInstrumentedTest.kt -------------------------------------------------------------------------------- /library/src/main/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/src/main/AndroidManifest.xml -------------------------------------------------------------------------------- /library/src/main/java/androidx/compose/material3/AndroidSystemAlertDialog.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/src/main/java/androidx/compose/material3/AndroidSystemAlertDialog.kt -------------------------------------------------------------------------------- /library/src/main/java/androidx/compose/ui/window/AndroidSystemDialog.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/src/main/java/androidx/compose/ui/window/AndroidSystemDialog.android.kt -------------------------------------------------------------------------------- /library/src/main/java/com/github/only52607/compose/window/ComposeFloatingWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/src/main/java/com/github/only52607/compose/window/ComposeFloatingWindow.kt -------------------------------------------------------------------------------- /library/src/main/java/com/github/only52607/compose/window/Dragger.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/src/main/java/com/github/only52607/compose/window/Dragger.kt -------------------------------------------------------------------------------- /library/src/main/java/com/github/only52607/compose/window/LocalFloatingWindow.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/src/main/java/com/github/only52607/compose/window/LocalFloatingWindow.kt -------------------------------------------------------------------------------- /library/src/test/java/com/github/only52607/compose/window/ExampleUnitTest.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/library/src/test/java/com/github/only52607/compose/window/ExampleUnitTest.kt -------------------------------------------------------------------------------- /preview/example.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/preview/example.gif -------------------------------------------------------------------------------- /settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/only52607/compose-floating-window/HEAD/settings.gradle.kts --------------------------------------------------------------------------------