Refactoring

This commit is contained in:
2024-12-03 01:06:58 +01:00
parent 634ecce4d9
commit fc1823aec0
2 changed files with 133 additions and 132 deletions

View File

@@ -21,8 +21,11 @@ class SkillListTile extends StatelessWidget {
if (percentage != null)
Expanded(
flex: 5,
child: LinearProgressIndicator(
value: double.parse(percentage!) / 100,
child: Padding(
padding: const EdgeInsets.only(left: 8.0),
child: LinearProgressIndicator(
value: double.parse(percentage!) / 100,
),
),
),
],