Skip to content

Commit

Permalink
Unit borderRadius (apache#23593)
Browse files Browse the repository at this point in the history
  • Loading branch information
darkhan.nausharipov authored and nausharipov committed Nov 3, 2022
1 parent fbf27f8 commit 67b348b
Showing 1 changed file with 4 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -61,7 +61,10 @@ class _UnitWidgetState extends State<UnitWidget> {
return ClickableWidget(
onTap: () => widget.contentTreeController.onNodeTap(widget.unit),
child: Container(
color: isSelected ? Theme.of(context).selectedRowColor : null,
decoration: BoxDecoration(
color: isSelected ? Theme.of(context).selectedRowColor : null,
borderRadius: BorderRadius.circular(BeamSizes.size3),
),
padding: const EdgeInsets.symmetric(vertical: BeamSizes.size10),
child: Row(
children: [
Expand Down

0 comments on commit 67b348b

Please sign in to comment.