We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3e2216d commit e9ea523Copy full SHA for e9ea523
lib/pages/team_lookup/tabs/team_lookup_categories.dart
@@ -193,12 +193,13 @@ class MetricTile extends StatelessWidget {
193
@override
194
Widget build(BuildContext context) {
195
final Widget contents = Container(
196
+ constraints: const BoxConstraints(minWidth: 70),
197
decoration: BoxDecoration(
198
color: Theme.of(context).colorScheme.primary,
199
borderRadius: const BorderRadius.all(Radius.circular(5)),
200
),
201
child: Padding(
- padding: const EdgeInsets.all(10),
202
+ padding: const EdgeInsets.symmetric(horizontal: 10, vertical: 8),
203
child: Column(
204
children: [
205
Text(
0 commit comments