chore: in space analytics tab on small screens show language code in language dropdown (#4182)

pull/2245/head
ggurdin 4 weeks ago committed by GitHub
parent 9ef954a8d5
commit a51870ccec
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

@ -101,10 +101,13 @@ class SpaceAnalyticsView extends StatelessWidget {
children: [
if (controller.selectedLanguage != null)
Text(
controller.selectedLanguage!
.getDisplayName(context) ??
controller
.selectedLanguage!.displayName,
mini
? controller.selectedLanguage!.langCode
.toUpperCase()
: controller.selectedLanguage!
.getDisplayName(context) ??
controller
.selectedLanguage!.displayName,
style: TextStyle(
color:
theme.colorScheme.onPrimaryContainer,

Loading…
Cancel
Save