Skip to content
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

[FEAT] Add timeline widget for android #196

Draft
wants to merge 14 commits into
base: main
Choose a base branch
from

Conversation

callasio
Copy link
Contributor

@callasio callasio commented Sep 12, 2024

@callasio callasio added the feat New feature or request label Sep 12, 2024
@callasio callasio self-assigned this Sep 12, 2024
Copy link

codecov bot commented Sep 12, 2024

Codecov Report

Attention: Patch coverage is 0% with 16 lines in your changes missing coverage. Please review.

Project coverage is 38.96%. Comparing base (5896c05) to head (7b5f676).

Files with missing lines Patch % Lines
lib/pages/main_page.dart 0.00% 16 Missing ⚠️
Additional details and impacted files
@@            Coverage Diff             @@
##             main     #196      +/-   ##
==========================================
- Coverage   39.00%   38.96%   -0.04%     
==========================================
  Files          80       80              
  Lines        4879     4884       +5     
==========================================
  Hits         1903     1903              
- Misses       2976     2981       +5     

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@github-actions github-actions bot added size/l and removed size/m labels Sep 28, 2024
@callasio
Copy link
Contributor Author

callasio commented Oct 2, 2024

Screenshot_20241004_140536_One UI Home

@github-actions github-actions bot added size/xl and removed size/l labels Oct 2, 2024
Comment on lines +1 to +43
package org.sparcs.otlplus.api

object TimetableData {
val lectures: List<Lecture>
get() = listOf(
Lecture(
name = "프로그래밍 기초",
place = "(E11)창의학습관 308",
professor = "김교수",
timeBlocks = listOf(
TimeBlock(
weekday = WeekDays.Mon,
start = LocalTime(9, 0),
end = LocalTime(12, 0),
),
TimeBlock(
weekday = WeekDays.Wed,
start = LocalTime(10, 30),
end = LocalTime(12, 0),
),
),
course = 317
),
Lecture(
name = "지속가능 사회 인프라 시스템과 환경의 이해",
place = "(E11) 창의학습관 208",
professor = "김교수",
timeBlocks = listOf(
TimeBlock(
weekday = WeekDays.Mon,
start = LocalTime(16, 0),
end = LocalTime(17, 30),
),
TimeBlock(
weekday = WeekDays.Wed,
start = LocalTime(16, 0),
end = LocalTime(17, 30),
),
),
course = 100
)
)
}
Copy link
Contributor Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

@happycastle114 저 이 부분 API 불러오기 하면 되는데 일단 남겨놓겠습니다 담에 동방 가서 마무리할게요

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

넹 한번 저도 확인해볼게요

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
feat New feature or request size/xl
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants