FLUTTER ECOSYSTEM

gmpassos/swiss_knife

Nützliche Tools für Dart: Sammlungen, Mathematik, Datum usw.

Projektcover von Schweizer Messer
Stars
10
Forks
2
Letzter Push (UTC)
26.02.2026
Projektstatus
Aktiv
Graciliano Monteiro Passos GitHub avatar
GITHUB User

Graciliano Monteiro Passos ↗

SprachenDartShell

Von diesem Repository veröffentlichte Pakete

Verwendete Abhängigkeiten

Abhängigkeiten 7 Einträge

Original-README

Englischer Projektschnappschuss. Aktuelle Inhalte auf GitHub.

Projekt-README ein-/ausklappen

Swiss Knife

pub package Null Safety Dart CI GitHub Tag New Commits Last Commits Pull Requests Code size License FOSSA Status

Dart Useful Tools:

  • collections
  • data
  • date
  • events
  • io
  • json
  • loader
  • math
  • regexp
  • resources
  • string
  • uri

and more...

API

See Swiss Knife API documentation for full functionalities.

Usage

A simple EventStream usage example:

import 'package:swiss_knife/swiss_knife.dart';

class User {

  final EventStream<String> onNotification = new EventStream() ;

  void notify(String msg) {
    onNotification.add(msg) ;
  }

}

void main() {

  User user = new User() ;

  user.onNotification.listen((msg) {
    print("NOTIFICATION> $msg") ;
  });

}

Features and bugs

Please file feature requests and bugs at the issue tracker.

Author

Graciliano M. Passos: gmpassos@GitHub.

License

Dart free & open-source license.

FOSSA Status