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

View File

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