英文:
How to add colon to the end of the word using extension
问题
我想要在给定位置使用扩展将冒号添加到Dart单词中,就像这样(在Flutter中)。
示例:
Name: 和 Password:
Name:
Password:
No:
Price:
我们在Dart中使用大小写字母,就像我尝试在冒号(:)中使用的那样,类似于这种类型的任何单词并使用冒号扩展,我如何创建这个,请帮助我...
英文:
13
I would like to add colon to a Dart word in a given position using extension, exactly like this (In flutter).
example:
Name: and Password:
Name:
Password:
No:
Price:
we are use Uppercase and Lowercase in dart same as I try use in colon(:) same like this type any word and use colon extension how can I create this please help me...
答案1
得分: 0
创建一个新的字符串扩展,如下所示:这将使您的单词首字母大写,并在单词末尾添加冒号:
extension StringExtension on String {
String toCapitalized() => length > 0
? '${this[0].toUpperCase()}${substring(1).toLowerCase()}:'
: '';
}
使用:
Text("name".toCapitalized()),
Text("password".toCapitalized()),
英文:
Create new extension for string like below: This will capitalised your word and add colon at end of the word:
extension StringExtension on String {
String toCapitalized() => length > 0
? '${this[0].toUpperCase()}${substring(1).toLowerCase()}:'
: '';
}
Use:
Text("name".toCapitalized()),
Text("password".toCapitalized()),
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论