extension 0.1.1 copy "extension: ^0.1.1" to clipboard
extension: ^0.1.1 copied to clipboard

outdated

Package including lot helpers for easy developing on dart language

Logo

Package including lot helpers for easy developing on dart language.

Pub

Key FeaturesGetting Started

Key Features #

  • Small weight
  • Simple usage

Getting Started #

Import

import 'package:extension/extension.dart';

// Or by entity. Available: date, enum, string
import 'package:extension/<ENTITY NAME>.dart';

String #

// Capitalize first letter
'test'.capitalizeFirstLetter(); // return Test

// Check is email
'user@example.com'.isEmail; // return true
'qwerty'.isEmail; // return false

// Plural forms for russian words
plural(1, 'дом', 'дома', 'домов'); // returns дом
plural(2, 'дом', 'дома', 'домов'); // returns дома
plural(5, 'дом', 'дома', 'домов'); // returns домов

Date #

// Is today
DateTime.now().isToday; // return bool

// Is yesterday
DateTime.now().isYesterday; // return bool

// First day of month
DateTime(2018, 9, 30).firstDayOfMonth; // returns DateTime(2018, 9, 1)

// Last day of month
DateTime(2017, 3).lastDayOfMonth; // DateTime(2017, 3, 31)

// All days in month, DateTime array
DateTime(2017, 3).daysInMonth; // [DateTime(2017, 3, 1), DateTime(2017, 3, 2), ...]


assert(DateUtils.isSameWeek(DateTime(2017, 3, 5), DateTime(2017, 3, 6)));

// and more see api docs

Enum #

import 'package:extension/enum.dart';

// Enum value by string
enum AnyEnum {
  one,
  two,
  three,
}

final AnyEnum one = enumValueByString(AnyEnum.values, 'one'); // Returns AnyEnum.one
final AnyEnum one = enumValueByString(AnyEnum.values, 'qwerty', orElse: () => AnyEnum.two); // Returns AnyEnum.two

// Enum with value 
// assert(Meter.HIGH == 100);
// assert(Meter.HIGH is Meter);
class Meter<int> extends Enum<int> {
  const Meter(int val) : super (val);

  static const Meter HIGH = const Meter(100);
  static const Meter MIDDLE = const Meter(50);
  static const Meter LOW = const Meter(10);
}

And... all api reference available here

43
likes
0
pub points
86%
popularity

Publisher

verified publisherserge.software

Package including lot helpers for easy developing on dart language

Homepage
Repository (GitHub)
View/report issues

License

unknown (LICENSE)

More

Packages that depend on extension