Skip to content

Commit

Permalink
Added text padding in split button chooser
Browse files Browse the repository at this point in the history
  • Loading branch information
Gold872 committed Dec 10, 2023
1 parent 81328b7 commit aaf2865
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -175,7 +175,10 @@ class SplitButtonChooser extends NT4Widget {
return false;
}).toList(),
children: options.map((String option) {
return Text(option);
return Padding(
padding: const EdgeInsets.all(8.0),
child: Text(option),
);
}).toList(),
),
),
Expand Down

0 comments on commit aaf2865

Please sign in to comment.