Skip to content

Commit

Permalink
Merge branch 'release'
Browse files Browse the repository at this point in the history
  • Loading branch information
jpnurmi committed Mar 28, 2023
2 parents 194f784 + e9c2612 commit c5233f5
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion lib/src/widgets/yaru_page_indicator.dart
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,9 @@ class YaruPageIndicator extends StatelessWidget {
mainAxisSize: MainAxisSize.min,
children: List<Widget>.generate(length, (index) {
return Padding(
padding: EdgeInsets.only(left: index != 0 ? itemSpacing : 0),
padding: EdgeInsetsDirectional.only(
start: index != 0 ? itemSpacing : 0,
),
child: SizedBox(
width: itemSizes[index].width,
height: itemSizes[index].height,
Expand Down

0 comments on commit c5233f5

Please sign in to comment.