/Insets

Insets是一个帮助处理WindowInsets的库

Primary LanguageKotlinApache License 2.0Apache-2.0

Insets是一个帮助处理WindowInsets的库

Insets的使用说明

  1. 在根目录的settings.gradle添加
dependencyResolutionManagement {
    repositoriesMode.set(RepositoriesMode.FAIL_ON_PROJECT_REPOS)
    repositories {
        mavenCentral()
        maven { url 'https://jitpack.io' }
    }
}
  1. 在module的build.gradle添加
dependencies {
    def version = "1.2.2"
    implementation "com.github.xiaocydx.Insets:insets:${version}"
    implementation "com.github.xiaocydx.Insets:insets-compat:${version}"
    implementation "com.github.xiaocydx.Insets:insets-systembar:${version}"
}