Removed capitalization

This commit is contained in:
2025-08-05 14:45:55 +02:00
parent 92d8a6f68f
commit 91a21d1491
2 changed files with 3 additions and 5 deletions

View File

@@ -36,8 +36,7 @@ class LicenseView extends StatelessWidget {
context, context,
CupertinoPageRoute( CupertinoPageRoute(
builder: (_) => LicenseDetailView( builder: (_) => LicenseDetailView(
title: ossLicenses[index].name[0].toUpperCase() + title: ossLicenses[index].name,
ossLicenses[index].name.substring(1),
license: ossLicenses[index].license!, license: ossLicenses[index].license!,
), ),
), ),
@@ -45,8 +44,7 @@ class LicenseView extends StatelessWidget {
}, },
trailing: const CupertinoListTileChevron(), trailing: const CupertinoListTileChevron(),
title: Text( title: Text(
ossLicenses[index].name[0].toUpperCase() + ossLicenses[index].name,
ossLicenses[index].name.substring(1),
style: GoogleFonts.roboto(), style: GoogleFonts.roboto(),
), ),
subtitle: Text(ossLicenses[index].description), subtitle: Text(ossLicenses[index].description),

View File

@@ -2,7 +2,7 @@ name: cabo_counter
description: "Mobile app for the card game Cabo" description: "Mobile app for the card game Cabo"
publish_to: 'none' publish_to: 'none'
version: 0.5.6+660 version: 0.5.6+661
environment: environment:
sdk: ^3.5.4 sdk: ^3.5.4