Answers for "flutter inputformatters number and uppercase characters only"

1

flutter input text start with upper case

TextField(
   keyboardType: TextInputType.text,
   textCapitalization: TextCapitalization.sentences
)
Posted by: Guest on August-01-2020
0

dart char is uppercase

import 'dart:io';

main() {
  print("Enter a string : ");
  var str = stdin.readLineSync();

  if (str[0].toUpperCase() == str[0]) {
    print("The first character is uppercase");
  } else {
    print("The first character is not uppercase");
  }
}
Posted by: Guest on January-04-2021

Code answers related to "flutter inputformatters number and uppercase characters only"

Code answers related to "Swift"

Browse Popular Code Answers by Language