Library to create preference screens using Conductor controllers instead of fragments.

arkon f9de5b9856 Bump dependencies 2 years ago
gradle f9de5b9856 Bump dependencies 2 years ago
preference f9de5b9856 Bump dependencies 2 years ago
.gitignore 9a19372dac compatibility maintenance (#3) 6 years ago
.jitpack.yml 52fa796328 Bump to Conductor 3.1.1 3 years ago
LICENSE d6f7d969b8 Create LICENSE 4 years ago
README.md f9de5b9856 Bump dependencies 2 years ago
build.gradle f9de5b9856 Bump dependencies 2 years ago
gradle.properties 044c4ab60c Update Gradle, AGP, SDK versions, build tools, and AndroidX Preferences 4 years ago
gradlew cd32a34f2d Bump dependencies 2 years ago
gradlew.bat cd32a34f2d Bump dependencies 2 years ago
settings.gradle a1e4b21254 Initial commit 7 years ago

README.md

Library to create preference screens using Conductor controllers instead of fragments.

Including the library

You can include this library in your project with JitPack.

repositories {
    maven { url = "https://www.jitpack.io" }
}

dependencies {
    implementation 'com.github.tachiyomiorg:conductor-support-preference:3.1.8'
}

Usage

Create a class that inherits from PreferenceController and include your preferences in the onCreatePreferences method, either by inflating an xml with addPreferencesFromResource or manually creating them, though you will need to provide a ContextThemeWrapper if you use the latter and want to have a material theme.

Finally, use Router::pushController to show your preference controller.