Beautiful toast to show Achievements in your application
To use this plugin, add achieviment_view
as a dependency in your pubspec.yaml file.
import 'package:flutter/material.dart';
import 'package:achievement_view/achievement_view.dart';
void showAchievementView(BuildContext context){
AchievementView(
context,
title: "Yeaaah!",
subTitle: "Training completed successfully",
//onTab: _onTabAchievement,
//icon: Icon(Icons.insert_emoticon, color: Colors.white,),
//typeAnimationContent: AnimationTypeAchievement.fadeSlideToUp,
//borderRadius: 5.0,
//color: Colors.blueGrey,
//textStyleTitle: TextStyle(),
//textStyleSubTitle: TextStyle(),
//alignment: Alignment.topCenter,
//duration: Duration(seconds: 3),
//isCircle: false,
listener: (status){
print(status);
//AchievementState.opening
//AchievementState.open
//AchievementState.closing
//AchievementState.closed
}
)..show();
}