-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[refactor]グループ一覧ページをCompose LazyGirdに置き換え #133
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
以下の環境動作確認しました!
1つコメントしているのでそこの部分を追加してもらえれば問題ないと思います!
端末:Pixel7a
OSバージョン:14
implementation(platform("androidx.compose:compose-bom:2023.01.00")) | ||
implementation("androidx.compose.material:material") | ||
implementation("androidx.compose.foundation:foundation") | ||
implementation("androidx.compose.ui:ui") |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Buildの際に以下の依存関係を追加しないとエラーが出たので追加をお願いします!
implementation("androidx.compose.ui:ui-android:1.5.4")
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
確認しました!
コメントで指摘したか箇所は別のプルリクで対応しましょう!
対応するissue
関連PR
概要
データクラスWorkDataListの変更対応が大変そうなので、
ネックになっているRecyclerViewをCompose LazyGridに置き換えた
Compose導入に合わせてKotlin バージョンを1.8.21→1.8.10にした
意図する動作内容(または変更点)
元から↓
スクリーンショット(UI作成,変更時)
その他