mirror of
https://github.com/DefinedNet/mobile_nebula.git
synced 2025-01-30 17:07:02 +00:00
Add padding to the ConfigItem children to prevent text from touching the edge
This commit is contained in:
parent
126ed2f4b0
commit
3ec5882b2e
1 changed files with 1 additions and 1 deletions
|
@ -29,7 +29,7 @@ class ConfigItem extends StatelessWidget {
|
||||||
|
|
||||||
return Container(
|
return Container(
|
||||||
color: Utils.configItemBackground(context),
|
color: Utils.configItemBackground(context),
|
||||||
padding: EdgeInsets.only(top: 2, bottom: 2, left: 15, right: 20),
|
padding: EdgeInsets.only(top: 10, bottom: 10, left: 15, right: 20),
|
||||||
constraints: BoxConstraints(minHeight: Utils.minInteractiveSize),
|
constraints: BoxConstraints(minHeight: Utils.minInteractiveSize),
|
||||||
child: Row(
|
child: Row(
|
||||||
crossAxisAlignment: crossAxisAlignment,
|
crossAxisAlignment: crossAxisAlignment,
|
||||||
|
|
Loading…
Reference in a new issue