# Cake.Flutter
A Cake AddIn that extends Cake with Flutter command tools.
Branch | Status |
---|---|
Master | |
Develop |
1.2.0 References Cake 4.0.0, targets .net 6+
1.0.0 References Cake 1.0.0
0.1.1 References Cake 0.33+
0.1.0 References Cake 0.28+, .NET Standard 2.0+ and .NET 4.6.1+.
Including addin in cake script is easy.
#addin "Cake.Flutter"
To use the addin just add it to Cake call the aliases and configure any settings you want.
#addin "Cake.Flutter"
...
// How to login using a token
Task("BuildAot")
.Does(() => {
// or more containers at once
FlutterBuildAot(new FlutterBuildAotSettings());
)};
Other commands follow same convention.
This version is built against Flutter version 2.1.0.
If you have questions, search for an existing one, or create a new discussion on the Cake GitHub repository, using the extension-q-a
category.
Brought to you by Miha Markic and contributors.