AHSAppDevTeam / Arcadia-High-Mobile-iOS

Official Github Repository for the iOS AHS Mobile App
MIT License
3 stars 1 forks source link

Dot implementation on the schedule page #29

Open richardwei6 opened 2 years ago

richardwei6 commented 2 years ago

Each schedule will have an attribute called dots that'll be an integer representing how many dot(s) that should be displayed for that particular day.

Hollow dots represent no school while solid dots represent there is school.

Implementation on ahs.app

xingyzt commented 2 years ago
richardwei6 commented 2 years ago

Updated issue

  • attribute is currently dot, singular
xingyzt commented 2 years ago

can be implemented with colored text

if dots && dots > 0: return '●'.repeat(dots) else: return '○'

xingyzt commented 2 years ago

renamed attribute to plural dots