All Projects → RafaelBarbosatec → achievement_view_flutter

RafaelBarbosatec / achievement_view_flutter

Licence: MIT license
No description or website provided.

Programming Languages

C++
36643 projects - #6 most used programming language
dart
5743 projects
CMake
9771 projects
HTML
75241 projects
swift
15916 projects
objective c
16641 projects - #2 most used programming language

Projects that are alternatives of or similar to achievement view flutter

date field
Flutter DateField and DateFormField
Stars: ✭ 33 (-56%)
Mutual labels:  flutter-package
flutter-package-selection menu
A flutter widget, highly customizable, to select an item from a list of items.
Stars: ✭ 32 (-57.33%)
Mutual labels:  flutter-package
flutter cache store
More configurable cache manager for Flutter
Stars: ✭ 20 (-73.33%)
Mutual labels:  flutter-package
research.package
A Flutter package implementing support for surveys like ResearchStack and ResearchKit
Stars: ✭ 43 (-42.67%)
Mutual labels:  flutter-package
wasm.dart
WebAssembly virtual machine for Dart [work in progress]
Stars: ✭ 43 (-42.67%)
Mutual labels:  flutter-package
dough
This package provides some widgets you can use to create a smooshy UI.
Stars: ✭ 518 (+590.67%)
Mutual labels:  flutter-package
sounds
Flutter plugin for sound. Audio recorder and player.
Stars: ✭ 74 (-1.33%)
Mutual labels:  flutter-package
Flutter-Chat-Bar
Link to the package -. https://pub.dartlang.org/packages/flutter_chat_bar
Stars: ✭ 39 (-48%)
Mutual labels:  flutter-package
Motion-Tab-Bar
A beautiful animated flutter widget package library. The tab bar will attempt to use your current theme out of the box, however you may want to theme it.
Stars: ✭ 237 (+216%)
Mutual labels:  flutter-package
FlutterLoadingGIFs
Loading indicator GIFs. Material and Cupertino (Android and iOS) loading indicators in assorted sizes. Use as placeholders for loading remote image assets. Demo: https://gallery.codelessly.com/flutterwebsites/loadinggifs/
Stars: ✭ 28 (-62.67%)
Mutual labels:  flutter-package
link text
Easy to use text widget for Flutter apps, which converts inlined urls into working, clickable links
Stars: ✭ 20 (-73.33%)
Mutual labels:  flutter-package
flutter google maps
A Flutter plugin for integrating Google Maps in iOS, Android and Web applications. It is a wrapper of google_maps_flutter for Mobile and google_maps for Web.
Stars: ✭ 86 (+14.67%)
Mutual labels:  flutter-package
flutter dauth
A flutter package for authentication with DAuth(an OAuth2 based SSO (Single Sign On) for NITT students) authorisations service on behalf of the resource-owner/user.
Stars: ✭ 36 (-52%)
Mutual labels:  flutter-package
code editor
A code editor (dart, js, html, ...) for Flutter with syntax highlighting and custom theme.
Stars: ✭ 48 (-36%)
Mutual labels:  flutter-package
davinci
A flutter package to convert any widget to an Image.
Stars: ✭ 33 (-56%)
Mutual labels:  flutter-package
flutter scatter
A widget that displays a collection of dispersed and non-overlapping children
Stars: ✭ 85 (+13.33%)
Mutual labels:  flutter-package
flutter section table view
A iOS like table view including section, row, section header and divider
Stars: ✭ 73 (-2.67%)
Mutual labels:  flutter-package
snapping sheet
A package that provides a highly customizable sheet widget that snaps to different vertical & horizontal positions!
Stars: ✭ 362 (+382.67%)
Mutual labels:  flutter-package
rainbow container
🌈 A magical container which changes colors whenever its build method is called.
Stars: ✭ 21 (-72%)
Mutual labels:  flutter-package
liquid button
Liquify your buttons, web demo at website
Stars: ✭ 18 (-76%)
Mutual labels:  flutter-package

pub package buymeacoffee

AchievementView

Beautiful toast to show Achievements in your application

Usage of the achievement_view on an android device

Usage

To use this plugin, add achieviment_view as a dependency in your pubspec.yaml file.

Example

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();
  }
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].