0.6.1 - UI Fixes
This commit is contained in:
parent
1384aedb35
commit
df3b7d3d63
16 changed files with 215 additions and 34 deletions
|
|
@ -1031,11 +1031,11 @@ class _HistoryScreenState extends State<HistoryScreen> {
|
|||
body: ListView.builder(
|
||||
itemCount: (cache.history??[]).length,
|
||||
itemBuilder: (BuildContext context, int i) {
|
||||
Track t = cache.history[i];
|
||||
Track t = cache.history[cache.history.length - i - 1];
|
||||
return TrackTile(
|
||||
t,
|
||||
onTap: () {
|
||||
playerHelper.playFromTrackList(cache.history, t.id, QueueSource(
|
||||
playerHelper.playFromTrackList(cache.history.reversed.toList(), t.id, QueueSource(
|
||||
id: null,
|
||||
text: 'History'.i18n,
|
||||
source: 'history'
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue