Skip to content

Commit

Permalink
fix(track_tile): cannot see track index above 99
Browse files Browse the repository at this point in the history
  • Loading branch information
KRTirtho committed Jan 5, 2023
1 parent ceaa71b commit 78b3273
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions lib/components/shared/track_table/track_tile.dart
Original file line number Diff line number Diff line change
@@ -1,3 +1,4 @@
import 'package:auto_size_text/auto_size_text.dart';
import 'package:fl_query/fl_query.dart';
import 'package:fl_query_hooks/fl_query_hooks.dart';
import 'package:flutter/material.dart' hide Action;
Expand Down Expand Up @@ -196,9 +197,9 @@ class TrackTile extends HookConsumerWidget {
else
SizedBox(
height: 20,
width: 25,
width: 35,
child: Center(
child: PlatformText((track.key + 1).toString()),
child: AutoSizeText((track.key + 1).toString()),
),
),
Padding(
Expand Down

0 comments on commit 78b3273

Please sign in to comment.