Skip to content
This repository has been archived by the owner on May 6, 2024. It is now read-only.

feat: App Nav Overhaul #1715

Merged
merged 44 commits into from
Sep 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
44 commits
Select commit Hold shift + click to select a range
5d4d3d1
[chore] revert app nav changes (#1685)
mumer92 Oct 20, 2022
a81ae1c
[chore] add indicator on tab bar (#1687)
mumer92 Oct 28, 2022
1ab4427
chore: update learn tab icon (#1698)
mumer92 Nov 11, 2022
1160856
[chore] add empty state to my courses (#1697)
mumer92 Nov 14, 2022
57975d5
chore: add dashboard header view (#1705)
mumer92 Nov 28, 2022
fa5f064
chore: Course Dashboard Error Screen for Non-Upgradable Courses (#1708)
saeedbashir Dec 9, 2022
c413ff2
chore: course tab bar flow changes in course dashboard (#1707)
mumer92 Dec 9, 2022
4e7d297
chore: add error view on enrolled courses screen (#1718)
mumer92 Jan 18, 2023
92aeb3f
chore: course dashboard error screen for no access but upgradable cou…
mumer92 Jan 20, 2023
0451119
chore: scrolling behaviour on course dashboard header (#1723)
mumer92 Feb 3, 2023
30cfdbc
feat: add new error screen for outdated version (#1725)
saeedbashir Feb 17, 2023
364b140
feat: certificate banner stylistic changes on new course dashboard (#…
saeedbashir Feb 17, 2023
018b2f8
chore: add scrolling behaviour to redesigned Learn tab (#1729)
mumer92 Mar 2, 2023
5a1c318
chore: add collapsible section headers (#1726)
Mar 14, 2023
5e53bda
chore: resume course button implementation for new design #1737 (#1738)
Mar 17, 2023
a5b4486
chore: fix deeplinks with new dashboard (#1742)
Apr 6, 2023
99a4e8d
Merge branch 'master' into app_nav
saeedbashir Apr 12, 2023
dbba6b5
fix: fix broken tests
saeedbashir Apr 12, 2023
a554006
chore: discussions deep link and push notifications support for new c…
saeedbashir May 24, 2023
9692cf2
Merge branch 'master' into app_nav
May 24, 2023
ac83955
chore: update status bar color to match course dashboard header color…
saeedbashir May 25, 2023
d8fcc86
feat: show shift dates banner on new course dashboard (#1753)
saeedbashir May 26, 2023
3578e50
fix: fix course share button on iPad (#1757)
saeedbashir Jun 2, 2023
ca4149a
fix: fix blank screen on fresh enrollment with app nav work (#1759)
saeedbashir Jun 7, 2023
9114abc
fix: view showing behind collapsible headers (#1758)
Jun 8, 2023
e9f5823
chore: unit and component navigation (#1748)
Jun 9, 2023
6235591
chore: handle user interaction when user swipes quickly in page view …
Jun 23, 2023
4932195
Merge branch 'master' into app_nav
saeedbashir Jul 3, 2023
c2c4cb9
chore: incorporate changes of course price and currency code for exec…
saeedbashir Jul 5, 2023
77649b1
refactor: celebratory modal layout improvements (#1767)
saeedbashir Jul 5, 2023
e628e2a
chore: handle landscape for new dashboard and component navigation (#…
Jul 10, 2023
bde0e86
Merge branch 'master' into app_nav
Jul 10, 2023
56f7899
[chore] address app nav feedback (#1772)
Jul 18, 2023
263de97
chore: fix title label constraint (#1775)
Jul 21, 2023
bb26212
Revert "chore: fix title label constraint (#1775)" (#1778)
Jul 21, 2023
193af87
fix: fix unable to dismiss an error message from course list screen (…
saeedbashir Jul 21, 2023
e4c6460
fix: fix for subsection unwanted collapse (#1776)
saeedbashir Jul 21, 2023
8423142
fix: fix crash on new enrollment on course dashboard (#1781)
Jul 26, 2023
2c13e77
chore: expand next section after a section is marked as completed (#1…
Aug 1, 2023
2e737f7
Merge branch 'master' into app_nav
saeedbashir Aug 4, 2023
9da5e41
chore: update the edit screen title to Personal information (#1785)
saeedbashir Aug 9, 2023
5b93cd8
chore: update shift dates banner on component screen (#1786)
Aug 16, 2023
cb92fce
chore: improve scrolling experience on discover title bar (#1788)
saeedbashir Aug 18, 2023
e23c9a3
fix: merging master into the branch
saeedbashir Sep 19, 2023
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
204 changes: 204 additions & 0 deletions Pods/Target Support Files/Pods-edX/Pods-edX-frameworks.sh

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 5 additions & 2 deletions Source/AccessibilityCLButton.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,9 +34,12 @@ class AccessibilityCLButton: CustomPlayerButton {
}

public override func draw(_ rect: CGRect) {
let r = UIBezierPath(ovalIn: rect)
let diameter = min(rect.width, rect.height)
let circleRect = CGRect(x: rect.origin.x, y: rect.origin.y, width: diameter, height: diameter)
let path = UIBezierPath(ovalIn: circleRect)
UIColor.black.withAlphaComponent(0.65).setFill()
r.fill()
path.fill()

super.draw(rect)
}
}
Loading
Loading