mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
chore(mobile): Capitalize Places cities in app (#2985)
This commit is contained in:
9
mobile/lib/utils/capitalize.dart
Normal file
9
mobile/lib/utils/capitalize.dart
Normal file
@@ -0,0 +1,9 @@
|
||||
extension StringExtension on String {
|
||||
String capitalize() {
|
||||
return this
|
||||
.split(" ")
|
||||
.map((str) =>
|
||||
str.isEmpty ? str : str[0].toUpperCase() + str.substring(1))
|
||||
.join(" ");
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user