capitalize 0.0.1 copy "capitalize: ^0.0.1" to clipboard
capitalize: ^0.0.1 copied to clipboard

A package to make the initial letter of a text capital.

Added a method capitalizeAllWord to make the initial word of a text capital.


class CapitalizeWords extends StatelessWidget {
  const CapitalizeWords({Key? key}) : super(key: key);

  IsCapitalize isCapitalize = IsCapitalize();
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: Text(isCapitalize.capitalizeAllWord("hello world")),
      ),
    );
  }
}
4
likes
140
points
49
downloads

Publisher

unverified uploader

Weekly Downloads

A package to make the initial letter of a text capital.

Homepage

Documentation

API reference

License

GPL-3.0 (license)

Dependencies

flutter

More

Packages that depend on capitalize