mirror of
https://github.com/wger-project/flutter.git
synced 2026-02-18 00:17:48 +01:00
Adjust image width for consistent sizing
This commit is contained in:
@@ -269,7 +269,10 @@ class StartPage extends StatelessWidget {
|
||||
return Column(
|
||||
children: [
|
||||
ListTile(
|
||||
leading: ExerciseImageWidget(image: exercise.getMainImage),
|
||||
leading: SizedBox(
|
||||
width: 45,
|
||||
child: ExerciseImageWidget(image: exercise.getMainImage),
|
||||
),
|
||||
title: Text(exercise
|
||||
.getTranslation(Localizations.localeOf(context).languageCode)
|
||||
.name),
|
||||
|
||||
Reference in New Issue
Block a user