fix: Minor design fixes

onboarding
Krille Fear 4 years ago
parent d71cb9bdc4
commit 0b44f52937

@ -67,13 +67,7 @@ class EventInfoDialog extends StatelessWidget {
padding: const EdgeInsets.all(12.0),
child: SingleChildScrollView(
scrollDirection: Axis.horizontal,
child: Text(
prettyJson,
style: const TextStyle(
fontFamily: 'Roboto-Mono',
fontSize: 16,
),
),
child: Text(prettyJson),
),
),
],

@ -283,7 +283,7 @@ class _ButtonContent extends StatelessWidget {
),
onPressed: onPressed,
icon: icon,
label: Text(label),
label: Text(label, overflow: TextOverflow.ellipsis),
);
}
}

Loading…
Cancel
Save