mirror of
https://github.com/KRTirtho/spotube.git
synced 2025-09-13 07:55:18 +00:00
fix(track_tile): cannot see track index above 99
This commit is contained in:
parent
ceaa71bf1b
commit
78b3273e44
@ -1,3 +1,4 @@
|
|||||||
|
import 'package:auto_size_text/auto_size_text.dart';
|
||||||
import 'package:fl_query/fl_query.dart';
|
import 'package:fl_query/fl_query.dart';
|
||||||
import 'package:fl_query_hooks/fl_query_hooks.dart';
|
import 'package:fl_query_hooks/fl_query_hooks.dart';
|
||||||
import 'package:flutter/material.dart' hide Action;
|
import 'package:flutter/material.dart' hide Action;
|
||||||
@ -196,9 +197,9 @@ class TrackTile extends HookConsumerWidget {
|
|||||||
else
|
else
|
||||||
SizedBox(
|
SizedBox(
|
||||||
height: 20,
|
height: 20,
|
||||||
width: 25,
|
width: 35,
|
||||||
child: Center(
|
child: Center(
|
||||||
child: PlatformText((track.key + 1).toString()),
|
child: AutoSizeText((track.key + 1).toString()),
|
||||||
),
|
),
|
||||||
),
|
),
|
||||||
Padding(
|
Padding(
|
||||||
|
Loading…
Reference in New Issue
Block a user