string_capitalize_extension

Creator: coderz1093

Last updated:

0 purchases

TODO
Add to Cart

Description:

string capitalize extension

A package that extends dart's string capitalization functions.
Features #
It allows to capitalize the strings in different ways, check the usage to see what it is capable.
Getting started #
import package.
import 'package:string_capitalize_extension/string_capitalize_extension.dart';
copied to clipboard

// Onlyfirst letter.
const like = 'sample word. sample';
print(like.onlyFirstCase);
copied to clipboard
Usage #
Import the package
Use Package

// Onlyfirst letter.
const like = 'sample word. sample';

print(like.onlyFirstCase);


///Every Words
print(like.tittleCase);


///At the end of every sentence
print(like.sentenceCase);
copied to clipboard
Additional information #
I made this package just to practice publishing on pub dev,
but I'll try to add more features to it in the future as needed.

License

For personal and professional use. You cannot resell or redistribute these repositories in their original state.

Files:

Customer Reviews

There are no reviews.