Skip to content

Latest commit

 

History

History
26 lines (24 loc) · 767 Bytes

README.md

File metadata and controls

26 lines (24 loc) · 767 Bytes

Insets是一个帮助处理WindowInsets的库

Insets - 使用文档

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.6"
    implementation "com.github.xiaocydx.Insets:insets:${version}"
    implementation "com.github.xiaocydx.Insets:insets-compat:${version}"
    implementation "com.github.xiaocydx.Insets:insets-systembar:${version}"
}