Skip to content

Commit

Permalink
docs: 기능목록 정리
Browse files Browse the repository at this point in the history
  • Loading branch information
chws0508 committed May 22, 2023
1 parent 7511dd8 commit 231e929
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 11 deletions.
18 changes: 8 additions & 10 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,13 @@

## ProductDetail
- [x] 상품의 정보를 보여준다.
- [ ] 장바구니 담기를 누르면 수량 선택 다이얼로그가 나온다.
- [ ] +버튼을 누르면 수량이 추가된다.
- [ ] -버튼을 누르면 수량이 감소된다.
- [ ] 담기를 누르면 장바구니에 추가된다.
- [ ] 마지막으로 본 상품이 아니라면, 마지막으로 본 상품이 보여진다.
- [ ] 마지막으로 본 상품이 맞다면, 마지막으로 본 상품이 안보여진다.
- [ ] 마지막으로 본 상품에서 뒤로가기를 누르면, 상품 목록으로 간다.
- [x] 장바구니 담기를 누르면 수량 선택 다이얼로그가 나온다.
- [x] +버튼을 누르면 수량이 추가된다.
- [x] -버튼을 누르면 수량이 감소된다.
- [x] 담기를 누르면 장바구니에 추가된다.
- [x] 마지막으로 본 상품이 아니라면, 마지막으로 본 상품이 보여진다.
- [x] 마지막으로 본 상품이 맞다면, 마지막으로 본 상품이 안보여진다.
- [x] 마지막으로 본 상품에서 뒤로가기를 누르면, 상품 목록으로 간다.
-
## Cart
- [x] 장바구니에 목록을 볼수있다.
Expand All @@ -32,8 +32,6 @@
- [x] 장바구니를 선택하면, 그 상품의 수량이 주문하기 옆에 표시된다.
- [x] 전체를 선택하면, 그 페이지 내의 모든 상품이 선택된다.
- [x] 상품의 수량 조절 버튼으로 수량을 조절할 수 있다.
-
# Product
- [x] 상품 정보를 담고있다.



Original file line number Diff line number Diff line change
Expand Up @@ -29,9 +29,9 @@ class ProductDetailActivity : AppCompatActivity(), ProductDetailContract.View {
private lateinit var productModel: ProductModel
override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
setUpBinding()
initProductModel()
initPresenter()
setUpBinding()
initView()
}

Expand Down

0 comments on commit 231e929

Please sign in to comment.