-
Notifications
You must be signed in to change notification settings - Fork 0
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
add demoscreen #1
base: master
Are you sure you want to change the base?
Conversation
PR Description updated to latest commit (63b783d) |
PR Review
Code feedback:
✨ Review tool usage guide:Overview: The tool can be triggered automatically every time a new PR is opened, or can be invoked manually by commenting on any PR.
See the review usage page for a comprehensive guide on using this tool. |
/improve |
PR Code Suggestions
✨ Improve tool usage guide:Overview:
See the improve usage page for a comprehensive guide on using this tool. |
Type
Enhancement
Description
DemoRepository
,DemoUseCase
,DemoViewModel
クラスの追加によるアーキテクチャの強化MainActivity
と新しいDemoScreen
コンポーザブル関数による UI の拡張Changes walkthrough
DemoRepository.kt
DemoRepository クラスの追加と基本機能の実装
app/src/main/java/com/t/saito/pr_agent_sample/DemoRepository.kt
DemoRepository
クラスの追加DemoUseCase.kt
DemoUseCase クラスの追加とリポジトリ操作メソッドの実装
app/src/main/java/com/t/saito/pr_agent_sample/DemoUseCase.kt
DemoUseCase
クラスの追加DemoRepository
を使用してデータ操作を行うメソッド群の実装DemoViewModel.kt
DemoViewModel の追加と UI 操作の状態管理
app/src/main/java/com/t/saito/pr_agent_sample/DemoViewModel.kt
DemoViewModel
とDemoViewModelFactory
クラスの追加DemoUseCase
を通じてデータ操作を行うメソッド群の実装MainActivity.kt
MainActivity への DemoViewModel の統合と UI 更新
app/src/main/java/com/t/saito/pr_agent_sample/MainActivity.kt
MainActivity
にDemoViewModel
の統合DemoScreen
コンポーザブル関数の呼び出し条件の追加DemoScreen.kt
DemoScreen の追加とデモ操作 UI の実装
app/src/main/java/com/t/saito/pr_agent_sample/ui/DemoScreen.kt
DemoScreen
コンポーザブル関数の追加