From c676944b9a2e879e59f49cb941eacc8679daba0f Mon Sep 17 00:00:00 2001 From: austinried <4966622+austinried@users.noreply.github.com> Date: Fri, 2 Jul 2021 10:07:57 +0900 Subject: [PATCH] header style is good for now fixed sorting --- src/components/common/AlbumView.tsx | 31 +++------- .../navigation/LibraryTopTabNavigator.tsx | 61 ++----------------- src/state/music.ts | 2 +- 3 files changed, 16 insertions(+), 78 deletions(-) diff --git a/src/components/common/AlbumView.tsx b/src/components/common/AlbumView.tsx index 217beb4..513d857 100644 --- a/src/components/common/AlbumView.tsx +++ b/src/components/common/AlbumView.tsx @@ -23,6 +23,7 @@ const SongItem: React.FC<{ id: string; title: string; artist?: string; + track?: number; onPress: (event: GestureResponderEvent) => void; }> = ({ id, title, artist, onPress }) => { const [opacity, setOpacity] = useState(1); @@ -137,11 +138,6 @@ const AlbumDetails: React.FC<{ flexDirection: 'row', }}>