Skip to content

Commit c246472

Browse files
committed
Fix spacing between icon and number
1 parent bc5cbbe commit c246472

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

lib/components/modals/select_move_or_copy_modal.dart

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -206,9 +206,9 @@ class _ExpansionAlbumTileState extends State<ExpansionAlbumTile> {
206206
children: [
207207
Padding(padding: EdgeInsetsGeometry.only(left: 10.0)),
208208
if (widget.index > 1) ...[
209-
Padding(padding: EdgeInsetsGeometry.only(
210-
left: 30.0*(widget.index-1)
211-
))
209+
Padding(
210+
padding: EdgeInsetsGeometry.only(
211+
left: 30.0 * (widget.index - 1)))
212212
],
213213
if (widget.album.children.isNotEmpty && !widget.isParent) ...[
214214
GestureDetector(
@@ -239,7 +239,7 @@ class _ExpansionAlbumTileState extends State<ExpansionAlbumTile> {
239239
padding: EdgeInsetsGeometry.symmetric(
240240
horizontal: 8,
241241
),
242-
child: Row(children: [
242+
child: Row(spacing: 4, children: [
243243
Text(
244244
'${widget.album.nbCategories}',
245245
style: TextStyle(

0 commit comments

Comments
 (0)