dartbowling 1.0.8 copy "dartbowling: ^1.0.8" to clipboard
dartbowling: ^1.0.8 copied to clipboard

An easy library to help aid in tracking bowling game scores with Flutter and Dart.

A simple command-line bowling application. #

final game = Game();
// STRIKE
game.add(10);

// SPARE
game.add(7);
game.add(3);

// another example of frame
game.add(2);
game.add(5);

// example of a calculated add - added by @czenzel
game.calculatedAdd("X");
game.calculatedAdd("/");

Check test/game_test.dart for more examples.

This implementation is based on the book Agile Principles, Patterns, and Practices in C# by Martin C. Robert, Martin Micah

Credits #

Credit goes to https://github.com/castrors/bowling for creating the original bowling command line script and library with Dart.

2
likes
150
points
42
downloads

Publisher

verified publisherchriszenzel.com

Weekly Downloads

An easy library to help aid in tracking bowling game scores with Flutter and Dart.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (license)

More

Packages that depend on dartbowling