mirror of
https://github.com/vodemn/m3_lightmeter.git
synced 2024-11-22 15:30:59 +00:00
Fixed equipment profile tile padding
This commit is contained in:
parent
520651a160
commit
32901bf163
1 changed files with 2 additions and 1 deletions
|
@ -71,6 +71,7 @@ class EquipmentProfileContainerState extends State<EquipmentProfileContainer>
|
||||||
mainAxisSize: MainAxisSize.min,
|
mainAxisSize: MainAxisSize.min,
|
||||||
children: [
|
children: [
|
||||||
ListTile(
|
ListTile(
|
||||||
|
contentPadding: const EdgeInsets.symmetric(horizontal: Dimens.paddingM),
|
||||||
title: Row(
|
title: Row(
|
||||||
children: [
|
children: [
|
||||||
_AnimatedNameLeading(controller: _controller),
|
_AnimatedNameLeading(controller: _controller),
|
||||||
|
@ -163,7 +164,7 @@ class _AnimatedNameLeading extends AnimatedWidget {
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return Padding(
|
return Padding(
|
||||||
padding: EdgeInsets.only(right: _progress.value * Dimens.grid24),
|
padding: EdgeInsets.only(right: _progress.value * Dimens.grid8),
|
||||||
child: Icon(
|
child: Icon(
|
||||||
Icons.edit,
|
Icons.edit,
|
||||||
size: _progress.value * Dimens.grid24,
|
size: _progress.value * Dimens.grid24,
|
||||||
|
|
Loading…
Reference in a new issue