Skip to content

Commit

Permalink
Fixed padding with RTL languages on DropdownListTile
Browse files Browse the repository at this point in the history
  • Loading branch information
ferraridamiano committed Nov 1, 2023
1 parent 6c93226 commit a86da21
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/utils/utils_widgets.dart
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ class DropdownListTile extends StatelessWidget {
shrinkWrap: true,
children: [
Padding(
padding: const EdgeInsets.only(left: 16),
padding: const EdgeInsets.symmetric(horizontal: 16),
child: Text(
title,
style: Theme.of(context).textTheme.titleLarge,
Expand Down

0 comments on commit a86da21

Please sign in to comment.