You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Move version history to bottom of Parrot page with navigation button
- Add 'View Version History' button below latest release
- Move version history section to bottom of page
- Button uses anchor link to scroll to version history section
- Improves page flow and keeps focus on latest release
description ="Life is busy, and Parrot understands that. Your reading position is saved automatically, so you can seamlessly switch between your phone, tablet, and desktop without losing your place. Tap a notification and jump straight back into your book — no searching, no scrolling, just reading."
109
111
)
110
112
}
113
+
114
+
// Version History Section (at the bottom)
115
+
if (ParrotRes.releases.size >1) {
116
+
VersionHistorySection()
117
+
}
111
118
}
112
119
}
113
120
}
114
121
115
122
@Composable
116
-
privatefunReleasesSection() {
123
+
privatefunLatestReleaseSection() {
117
124
val latestRelease =ParrotRes.latestRelease
118
125
119
126
Column(
@@ -135,24 +142,36 @@ private fun ReleasesSection() {
0 commit comments