Skip to content

Commit af4c504

Browse files
authored
feat: add vertical scrollbars (#144) (#145)
1 parent 8fb770f commit af4c504

File tree

4 files changed

+2
-10
lines changed

4 files changed

+2
-10
lines changed

src/app/RecentlyPlayed/RecentlyPlayed.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -598,7 +598,6 @@ export default function RecentlyPlayed({
598598
<ScrollView
599599
ref={scrollViewRef}
600600
style={styles.scrollView}
601-
showsVerticalScrollIndicator={false}
602601
bounces={true}
603602
onScroll={handleScroll}
604603
scrollEventThrottle={400}

src/app/Schedule/ArchivedShowView.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -229,10 +229,7 @@ export default function ArchivedShowView() {
229229
style={styles.gradient}
230230
>
231231
<SafeAreaView style={[styles.safeArea, { paddingTop: headerHeight }]}>
232-
<ScrollView
233-
style={styles.scrollView}
234-
showsVerticalScrollIndicator={false}
235-
>
232+
<ScrollView style={styles.scrollView}>
236233
<ShowImage showName={show.name} archiveDate={archive.date} />
237234

238235
{/* Playback Controls */}

src/app/Schedule/SchedulePage.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -343,7 +343,6 @@ export default function SchedulePage() {
343343
<ScrollView
344344
ref={scrollViewRef}
345345
style={styles.scrollView}
346-
showsVerticalScrollIndicator={false}
347346
refreshControl={
348347
<RefreshControl refreshing={refreshing} onRefresh={onRefresh} />
349348
}

src/app/Schedule/ShowDetailsPage.tsx

Lines changed: 1 addition & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -297,10 +297,7 @@ export default function ShowDetailsPage() {
297297
style={styles.gradient}
298298
>
299299
<SafeAreaView style={[styles.safeArea, { paddingTop: headerHeight }]}>
300-
<ScrollView
301-
style={styles.scrollView}
302-
showsVerticalScrollIndicator={false}
303-
>
300+
<ScrollView style={styles.scrollView}>
304301
<ShowImage showName={show.name} />
305302

306303
{/* Show Info */}

0 commit comments

Comments
 (0)