halo_alert 1.0.0
halo_alert: ^1.0.0 copied to clipboard
Simple alert dialog for flutter
Halo Alert #
Features #
Simple alert dialog for flutter
workflow #
- Add features
- Check if new features (files) are added to
lib/src/halo_alert.dart - Write Unit Test if possible
- Check if new features (files) are added to
- Update version in
pubspec.yaml - Update
CHANGELOG.md git add .;git add .;git add .;git commit -m 'New feature'; git fetch;- Run
flutter pub publish
How to use #
void main() {
runApp(
MaterialApp(
home: MainApp(),
builder: (context, child) {
return Stack(children: [child!, Alert.deploy()]);
},
),
);
}