iwaju_utils 0.0.1
iwaju_utils: ^0.0.1 copied to clipboard
Utilities package for everyday flutter development.
This package contains utilities methods
Features #
This package contains methods for converting date to string, string to dates, random methods to get list of data for listview when prototyping
Getting started #
Use the class Utils with static methods like convertDateToStr, convertStrToDate and getRandomListViewData
Usage #
const String dateConverted = Utils.convertDateToStr(dateObject);
const Date dateParsed = Utils.convertStrToDate(stringLikeDate);
const List<Proverb> dataList = Utils.getRandomListViewdata(();
Additional information #
The method getRandomListViewdata will return random list of proverbs, in a form of list of type Proverb
"iwaju_utils"