GDSC-DGU / 2024-SolutionChallenge-earlips-frontend

2024 Solution Challenge Earlips Team Flutter Repository :)
MIT License
0 stars 3 forks source link

✨ Feat: 메인 학습페이지, 일별 학습 스크린 구현 및 네비게이션 수정 #24

Closed bunju20 closed 6 months ago

bunju20 commented 6 months ago

🔥 Related Issues

⛅️ 작업 내용

👀 스크린샷 / GIF / 링크

메인 학습 페이지

image image

달력 눌렀을때 나오는 페이지

image
List<LearningSession> getSessions() {
    return [
      LearningSession(type: '음소', createdDate: DateTime(2024, 2, 12), text: "가"),
      LearningSession(type: '단어', createdDate: DateTime(2024, 2, 13), text: "가다"),
      LearningSession(type: '문장', createdDate: DateTime(2024, 2, 14), text: "가다 보면 길이 있다."),
    ];
  }

일단 위처럼 뷰모델에서 더미 받아오는 식으로 하긴했는데 실제로는 특정날짜로 접근 -> 위의 데이터 받아와서 -> typt이랑 text만 사용할듯