├── .editorconfig ├── .github ├── dependabot.yml └── workflows │ ├── actions │ ├── build │ │ └── action.yml │ ├── doc │ │ └── action.yml │ ├── prepare │ │ └── action.yml │ └── test │ │ └── action.yml │ ├── build.yml │ └── buildRelease.yml ├── .gitignore ├── .idea ├── .gitignore ├── compiler.xml ├── runConfigurations │ └── iosApp.xml └── xcode.xml ├── LICENSE ├── README.md ├── art └── screenshot.png ├── gradle.properties ├── gradle ├── build-logic │ ├── convention │ │ ├── build.gradle.kts │ │ └── src │ │ │ └── main │ │ │ └── kotlin │ │ │ └── de │ │ │ └── charlex │ │ │ └── convention │ │ │ ├── AndroidApplicationConventionPlugin.kt │ │ │ ├── AndroidLibraryConventionPlugin.kt │ │ │ ├── ComposeMultiplatformConventionPlugin.kt │ │ │ ├── KotlinAndroidConventionPlugin.kt │ │ │ ├── KotlinMultiplatformConventionPlugin.kt │ │ │ ├── KotlinMultiplatformMobileConventionPlugin.kt │ │ │ ├── MavenCentralPublishConventionPlugin.kt │ │ │ ├── VersionCatalogue.kt │ │ │ └── config │ │ │ ├── Android.kt │ │ │ ├── Java.kt │ │ │ ├── Kotlin.kt │ │ │ └── Multiplatform.kt │ ├── gradle.properties │ └── settings.gradle.kts ├── libs.versions.toml └── wrapper │ ├── gradle-wrapper.jar │ └── gradle-wrapper.properties ├── gradlew ├── gradlew.bat ├── html-text-common ├── build.gradle.kts └── src │ ├── androidMain │ └── kotlin │ │ └── System.kt │ ├── commonMain │ └── kotlin │ │ ├── BaseHtmlText.kt │ │ ├── HtmlParser.kt │ │ ├── HtmlTextUtil.kt │ │ └── System.kt │ ├── iosMain │ └── kotlin │ │ └── System.kt │ └── jvmMain │ └── kotlin │ └── System.kt ├── html-text-material ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidMain │ └── kotlin │ │ └── HtmlText.android.kt │ └── commonMain │ └── kotlin │ └── HtmlText.kt ├── html-text-material3 ├── .gitignore ├── build.gradle.kts ├── proguard-rules.pro └── src │ ├── androidMain │ └── kotlin │ │ └── HtmlText.android.kt │ └── commonMain │ └── kotlin │ └── HtmlText.kt ├── mkver.conf ├── sample-app ├── android-app │ ├── .gitignore │ ├── build.gradle.kts │ ├── proguard-rules.pro │ └── src │ │ └── androidMain │ │ ├── AndroidManifest.xml │ │ ├── kotlin │ │ └── de │ │ │ └── charlex │ │ │ └── compose │ │ │ └── htmltext │ │ │ └── example │ │ │ └── MainActivity.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 ├── ios-app │ ├── Configuration │ │ └── Config.xcconfig │ ├── iosApp.xcodeproj │ │ ├── project.pbxproj │ │ ├── project.xcworkspace │ │ │ └── xcshareddata │ │ │ │ └── IDEWorkspaceChecks.plist │ │ ├── xcshareddata │ │ │ └── xcschemes │ │ │ │ └── iosApp.xcscheme │ │ └── xcuserdata │ │ │ ├── alex.xcuserdatad │ │ │ └── xcschemes │ │ │ │ └── xcschememanagement.plist │ │ │ └── julian.xcuserdatad │ │ │ └── xcschemes │ │ │ └── xcschememanagement.plist │ └── iosApp │ │ ├── Assets.xcassets │ │ ├── AccentColor.colorset │ │ │ └── Contents.json │ │ ├── AppIcon.appiconset │ │ │ ├── Contents.json │ │ │ └── app-icon-1024.png │ │ └── Contents.json │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── Preview Content │ │ └── Preview Assets.xcassets │ │ │ └── Contents.json │ │ └── iOSApp.swift └── shared │ ├── build.gradle.kts │ └── src │ ├── commonMain │ ├── composeResources │ │ └── values │ │ │ └── strings.xml │ └── kotlin │ │ ├── MainView.kt │ │ └── SharedMainView.kt │ └── iosMain │ └── kotlin │ └── main.ios.kt └── settings.gradle /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/dependabot.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.github/dependabot.yml -------------------------------------------------------------------------------- /.github/workflows/actions/build/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.github/workflows/actions/build/action.yml -------------------------------------------------------------------------------- /.github/workflows/actions/doc/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.github/workflows/actions/doc/action.yml -------------------------------------------------------------------------------- /.github/workflows/actions/prepare/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.github/workflows/actions/prepare/action.yml -------------------------------------------------------------------------------- /.github/workflows/actions/test/action.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.github/workflows/actions/test/action.yml -------------------------------------------------------------------------------- /.github/workflows/build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.github/workflows/build.yml -------------------------------------------------------------------------------- /.github/workflows/buildRelease.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.github/workflows/buildRelease.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.idea/compiler.xml -------------------------------------------------------------------------------- /.idea/runConfigurations/iosApp.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.idea/runConfigurations/iosApp.xml -------------------------------------------------------------------------------- /.idea/xcode.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/.idea/xcode.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/README.md -------------------------------------------------------------------------------- /art/screenshot.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/art/screenshot.png -------------------------------------------------------------------------------- /gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle.properties -------------------------------------------------------------------------------- /gradle/build-logic/convention/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/build.gradle.kts -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/AndroidApplicationConventionPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/AndroidApplicationConventionPlugin.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/AndroidLibraryConventionPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/AndroidLibraryConventionPlugin.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/ComposeMultiplatformConventionPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/ComposeMultiplatformConventionPlugin.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/KotlinAndroidConventionPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/KotlinAndroidConventionPlugin.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/KotlinMultiplatformConventionPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/KotlinMultiplatformConventionPlugin.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/KotlinMultiplatformMobileConventionPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/KotlinMultiplatformMobileConventionPlugin.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/MavenCentralPublishConventionPlugin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/MavenCentralPublishConventionPlugin.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/VersionCatalogue.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/VersionCatalogue.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/config/Android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/config/Android.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/config/Java.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/config/Java.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/config/Kotlin.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/config/Kotlin.kt -------------------------------------------------------------------------------- /gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/config/Multiplatform.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/convention/src/main/kotlin/de/charlex/convention/config/Multiplatform.kt -------------------------------------------------------------------------------- /gradle/build-logic/gradle.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/gradle.properties -------------------------------------------------------------------------------- /gradle/build-logic/settings.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/build-logic/settings.gradle.kts -------------------------------------------------------------------------------- /gradle/libs.versions.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/libs.versions.toml -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.jar: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/wrapper/gradle-wrapper.jar -------------------------------------------------------------------------------- /gradle/wrapper/gradle-wrapper.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradle/wrapper/gradle-wrapper.properties -------------------------------------------------------------------------------- /gradlew: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradlew -------------------------------------------------------------------------------- /gradlew.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/gradlew.bat -------------------------------------------------------------------------------- /html-text-common/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-common/build.gradle.kts -------------------------------------------------------------------------------- /html-text-common/src/androidMain/kotlin/System.kt: -------------------------------------------------------------------------------- 1 | package de.charlex.compose.htmltext.core 2 | 3 | actual fun isIOS(): Boolean = false -------------------------------------------------------------------------------- /html-text-common/src/commonMain/kotlin/BaseHtmlText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-common/src/commonMain/kotlin/BaseHtmlText.kt -------------------------------------------------------------------------------- /html-text-common/src/commonMain/kotlin/HtmlParser.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-common/src/commonMain/kotlin/HtmlParser.kt -------------------------------------------------------------------------------- /html-text-common/src/commonMain/kotlin/HtmlTextUtil.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-common/src/commonMain/kotlin/HtmlTextUtil.kt -------------------------------------------------------------------------------- /html-text-common/src/commonMain/kotlin/System.kt: -------------------------------------------------------------------------------- 1 | package de.charlex.compose.htmltext.core 2 | 3 | expect fun isIOS(): Boolean -------------------------------------------------------------------------------- /html-text-common/src/iosMain/kotlin/System.kt: -------------------------------------------------------------------------------- 1 | package de.charlex.compose.htmltext.core 2 | 3 | actual fun isIOS(): Boolean = true -------------------------------------------------------------------------------- /html-text-common/src/jvmMain/kotlin/System.kt: -------------------------------------------------------------------------------- 1 | package de.charlex.compose.htmltext.core 2 | 3 | actual fun isIOS(): Boolean = false -------------------------------------------------------------------------------- /html-text-material/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /html-text-material/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-material/build.gradle.kts -------------------------------------------------------------------------------- /html-text-material/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-material/proguard-rules.pro -------------------------------------------------------------------------------- /html-text-material/src/androidMain/kotlin/HtmlText.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-material/src/androidMain/kotlin/HtmlText.android.kt -------------------------------------------------------------------------------- /html-text-material/src/commonMain/kotlin/HtmlText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-material/src/commonMain/kotlin/HtmlText.kt -------------------------------------------------------------------------------- /html-text-material3/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /html-text-material3/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-material3/build.gradle.kts -------------------------------------------------------------------------------- /html-text-material3/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-material3/proguard-rules.pro -------------------------------------------------------------------------------- /html-text-material3/src/androidMain/kotlin/HtmlText.android.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-material3/src/androidMain/kotlin/HtmlText.android.kt -------------------------------------------------------------------------------- /html-text-material3/src/commonMain/kotlin/HtmlText.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/html-text-material3/src/commonMain/kotlin/HtmlText.kt -------------------------------------------------------------------------------- /mkver.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/mkver.conf -------------------------------------------------------------------------------- /sample-app/android-app/.gitignore: -------------------------------------------------------------------------------- 1 | /build -------------------------------------------------------------------------------- /sample-app/android-app/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/build.gradle.kts -------------------------------------------------------------------------------- /sample-app/android-app/proguard-rules.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/proguard-rules.pro -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/AndroidManifest.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/AndroidManifest.xml -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/kotlin/de/charlex/compose/htmltext/example/MainActivity.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/kotlin/de/charlex/compose/htmltext/example/MainActivity.kt -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/drawable-v24/ic_launcher_foreground.xml -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/drawable/ic_launcher_background.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/drawable/ic_launcher_background.xml -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher.xml -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-anydpi-v26/ic_launcher_round.xml -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-hdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-hdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-hdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-mdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-mdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-mdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-xhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-xhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-xxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-xxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/mipmap-xxxhdpi/ic_launcher_round.webp -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/values-night/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/values-night/themes.xml -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/values/colors.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/values/colors.xml -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/values/strings.xml -------------------------------------------------------------------------------- /sample-app/android-app/src/androidMain/res/values/themes.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/android-app/src/androidMain/res/values/themes.xml -------------------------------------------------------------------------------- /sample-app/ios-app/Configuration/Config.xcconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/Configuration/Config.xcconfig -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp.xcodeproj/project.xcworkspace/xcshareddata/IDEWorkspaceChecks.plist -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp.xcodeproj/xcshareddata/xcschemes/iosApp.xcscheme -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp.xcodeproj/xcuserdata/alex.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp.xcodeproj/xcuserdata/julian.xcuserdatad/xcschemes/xcschememanagement.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp.xcodeproj/xcuserdata/julian.xcuserdatad/xcschemes/xcschememanagement.plist -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp/Assets.xcassets/AccentColor.colorset/Contents.json -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp/Assets.xcassets/AppIcon.appiconset/Contents.json -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp/Assets.xcassets/AppIcon.appiconset/app-icon-1024.png -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp/Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp/Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp/ContentView.swift -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp/Info.plist -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp/Preview Content/Preview Assets.xcassets/Contents.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp/Preview Content/Preview Assets.xcassets/Contents.json -------------------------------------------------------------------------------- /sample-app/ios-app/iosApp/iOSApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/ios-app/iosApp/iOSApp.swift -------------------------------------------------------------------------------- /sample-app/shared/build.gradle.kts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/shared/build.gradle.kts -------------------------------------------------------------------------------- /sample-app/shared/src/commonMain/composeResources/values/strings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/shared/src/commonMain/composeResources/values/strings.xml -------------------------------------------------------------------------------- /sample-app/shared/src/commonMain/kotlin/MainView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/shared/src/commonMain/kotlin/MainView.kt -------------------------------------------------------------------------------- /sample-app/shared/src/commonMain/kotlin/SharedMainView.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/shared/src/commonMain/kotlin/SharedMainView.kt -------------------------------------------------------------------------------- /sample-app/shared/src/iosMain/kotlin/main.ios.kt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/sample-app/shared/src/iosMain/kotlin/main.ios.kt -------------------------------------------------------------------------------- /settings.gradle: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ch4rl3x/HtmlText/HEAD/settings.gradle --------------------------------------------------------------------------------