mkurom / Kotlin_sampleApp

Kotlin勉強用
1 stars 0 forks source link

ConstraintLayoutメモ #30

Open mkurom opened 2 years ago

mkurom commented 2 years ago

●ConstraintLayoutの使用方法

プロジェクト直下のbuild.gradleに以下を記載する(プロジェクト生成時に記載済み)

repositories {
  google()
}

appディレクトリのbuild.gradleに以下を記載する(バージョンは確認すること)

dependencies {
    implementation "androidx.constraintlayout:constraintlayout:2.1.2"
    // To use constraintlayout in compose
    implementation "androidx.constraintlayout:constraintlayout-compose:1.0.0-rc02"
}