Toast Plugin for Flutter

Overview

fluttertoast

Toast Library for Flutter

Build Checks

Now this toast library supports two kinds of toast messages one which requires BuildContext other with No BuildContext

Toast with no context

Supported Platforms

This one has limited features and no control over UI

Toast Which requires BuildContext

Supported Platforms

  • ALL
  1. Full Control of the Toast
  2. Toasts will be queued
  3. Remove a toast
  4. Clear the queue

How to Use

# add this line to your dependencies
fluttertoast: ^8.0.8
import 'package:fluttertoast/fluttertoast.dart';

Toast with No Build Context (Android & iOS)

Fluttertoast.showToast(
        msg: "This is Center Short Toast",
        toastLength: Toast.LENGTH_SHORT,
        gravity: ToastGravity.CENTER,
        timeInSecForIosWeb: 1,
        backgroundColor: Colors.red,
        textColor: Colors.white,
        fontSize: 16.0
    );
property description default
msg String (Not Null)(required) required
toastLength Toast.LENGTH_SHORT or Toast.LENGTH_LONG (optional) Toast.LENGTH_SHORT
gravity ToastGravity.TOP (or) ToastGravity.CENTER (or) ToastGravity.BOTTOM (Web Only supports top, bottom) ToastGravity.BOTTOM
timeInSecForIosWeb int (for ios & web) 1 (sec)
backgroundColor Colors.red null
textcolor Colors.white null
fontSize 16.0 (float) null
webShowClose false (bool) false
webBgColor String (hex Color) linear-gradient(to right, #00b09b, #96c93d)
webPosition String (left, center or right) right

To cancel all the toasts call

Fluttertoast.cancel()

Note Android

Custom Toast will not work on android 11 and above, it will only use msg and toastLength remaining all properties are ignored

Custom Toast For Android

Create a file named toast_custom.xml in your project app/res/layout folder and do custom styling

<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:layout_marginStart="50dp"
    android:background="@drawable/corner"
    android:layout_marginEnd="50dp">

    <TextView
        android:id="@+id/text"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:background="#CC000000"
        android:paddingStart="16dp"
        android:paddingTop="10dp"
        android:paddingEnd="16dp"
        android:paddingBottom="10dp"
        android:textStyle="bold"
        android:textColor="#FFFFFF"
        tools:text="Toast should be short." />
</FrameLayout>

Toast with BuildContext (All Platforms)

FToast fToast;

@override
void initState() {
    super.initState();
    fToast = FToast();
    fToast.init(context);
}

_showToast() {
    Widget toast = Container(
        padding: const EdgeInsets.symmetric(horizontal: 24.0, vertical: 12.0),
        decoration: BoxDecoration(
        borderRadius: BorderRadius.circular(25.0),
        color: Colors.greenAccent,
        ),
        child: Row(
        mainAxisSize: MainAxisSize.min,
        children: [
            Icon(Icons.check),
            SizedBox(
            width: 12.0,
            ),
            Text("This is a Custom Toast"),
        ],
        ),
    );


    fToast.showToast(
        child: toast,
        gravity: ToastGravity.BOTTOM,
        toastDuration: Duration(seconds: 2),
    );
    
    // Custom Toast Position
    fToast.showToast(
        child: toast,
        toastDuration: Duration(seconds: 2),
        positionedToastBuilder: (context, child) {
          return Positioned(
            child: child,
            top: 16.0,
            left: 16.0,
          );
        });
}

Now Call _showToast()

For more details check example project

property description default
child Widget (Not Null)(required) required
toastDuration Duration (optional)
gravity ToastGravity.*

To cancel all the toasts call

// To remove present shwoing toast
fToast.removeCustomToast()

// To clear the queue
fToast.removeQueuedCustomToasts();

Preview Images (No BuildContext)

Preview Images (BuildContext)

If you need any features suggest

...

Help needed for iOS

Looking for iOS Dev who can check out and fix the issues releated to iOS (I dont have a Mac and iOS)

Buy Me a Coffee

Buy Me A Coffee

Comments
  • Background color does not fill the whole Toast (ver 2.1.0)

    Background color does not fill the whole Toast (ver 2.1.0)

    As shown below, Background color does not fill the whole Toast. image


    ENV:

    Google Pixel 2 XL running Android 9
    
    fluttertoast:
        dependency: "direct main"
        description:
          name: fluttertoast
          url: "https://pub.dartlang.org"
        source: hosted
        version: "2.1.0"
    
    Doctor summary (to see all details, run flutter doctor -v):
    [✓] Flutter (Channel beta, v0.11.3, on Mac OS X 10.14.1 18B75, locale en-CN)
    [✓] Android toolchain - develop for Android devices (Android SDK 28.0.3)
    [✓] iOS toolchain - develop for iOS devices (Xcode 10.1)
    [✓] Android Studio (version 3.2)
    [✓] VS Code (version 1.28.2)
    [✓] Connected device (3 available)
    
    • No issues found!
    
    bug 
    opened by jkyeo 25
  • MissingPluginException

    MissingPluginException

    Exception while invoking

    Fluttertoast.showToast(
      msg: _message,
      toastLength: Toast.LENGTH_LONG,
      gravity: ToastGravity.CENTER,
      timeInSecForIos: 1,
      bgcolor: "#e74c3c",
      textcolor: '#ffffff'
    );
    
    E/flutter (28857): [ERROR:topaz/lib/tonic/logging/dart_error.cc(16)] Unhandled exception:
    E/flutter (28857): MissingPluginException(No implementation found for method showToast on channel PonnamKarthik/fluttertoast)
    E/flutter (28857): #0      MethodChannel.invokeMethod (package:flutter/src/services/platform_channel.dart:278:7)
    E/flutter (28857): <asynchronous suspension>
    E/flutter (28857): #1      Fluttertoast.showToast (package:fluttertoast/fluttertoast.dart:54:33)
    E/flutter (28857): <asynchronous suspension>
    E/flutter (28857): #2      AppUtils.refresh (package:grom.......
    
    opened by tiholic 25
  • getting error on android

    getting error on android

    Hi, I am using v2.2.5 and when I try to run my code I get error:(even when I only add the package pubspec.yaml and don't import that in code)

    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':app:processDebugResources'.
    > Android resource linking failed
      Output:  C:\Projects\Hamayesh\hamayesh\build\app\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:7: error: resource android:attr/dialogCornerRadius not found.
      C:\Projects\Hamayesh\hamayesh\build\app\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:11: error: resource android:attr/dialogCornerRadius not found.
      C:\Projects\Hamayesh\hamayesh\build\app\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:956: error: resource android:attr/fontVariationSettings not found.
      C:\Projects\Hamayesh\hamayesh\build\app\intermediates\incremental\mergeDebugResources\merged.dir\values\values.xml:957: error: resource android:attr/ttcIndex not found.
      error: failed linking references.
    
      Command: C:\Users\Dell\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\451c100d8bf9a65f95ef6aa052d39f8f\aapt2-3.2.1-4818971-windows\aapt2.exe link -I\
              C:\Users\Dell\AppData\Local\Android\Sdk\platforms\android-27\android.jar\
              --manifest\
              C:\Projects\Hamayesh\hamayesh\build\app\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml\
              -o\
              C:\Projects\Hamayesh\hamayesh\build\app\intermediates\processed_res\debug\processDebugResources\out\resources-debug.ap_\
              -R\
              @C:\Projects\Hamayesh\hamayesh\build\app\intermediates\incremental\processDebugResources\resources-list-for-resources-debug.ap_.txt\
              --auto-add-overlay\
              --java\
              C:\Projects\Hamayesh\hamayesh\build\app\generated\not_namespaced_r_class_sources\debug\processDebugResources\r\
              --custom-package\
              com.example.hamayesh\
              -0\
              apk\
              --output-text-symbols\
              C:\Projects\Hamayesh\hamayesh\build\app\intermediates\symbols\debug\R.txt\
              --no-version-vectors
      Daemon:  AAPT2 aapt2-3.2.1-4818971-windows Daemon #0
      Output:  C:\Users\Dell\.gradle\caches\transforms-1\files-1.1\appcompat-1.0.2.aar\ecd6e2b9bb4b92916609cb0c2e58164c\res\values-v28\values-v28.xml:9:5-12:13: AAPT: error: resource android:attr/dialogCornerRadius not found.
    
      C:\Projects\Hamayesh\hamayesh\build\app\intermediates\incremental\mergeDebugResources\merged.dir\values-v28\values-v28.xml:11: AAPT: error: resource android:attr/dialogCornerRadius not found.
    
      C:\Users\Dell\.gradle\caches\transforms-1\files-1.1\core-1.0.1.aar\00977c9949f24ec591bbf642eb5a1280\res\values\values.xml:89:5-125:25: AAPT: error: resource android:attr/fontVariationSettings not found.
    
      C:\Users\Dell\.gradle\caches\transforms-1\files-1.1\core-1.0.1.aar\00977c9949f24ec591bbf642eb5a1280\res\values\values.xml:89:5-125:25: AAPT: error: resource android:attr/ttcIndex not found.
    
      error: failed linking references.
      Command: C:\Users\Dell\.gradle\caches\transforms-1\files-1.1\aapt2-3.2.1-4818971-windows.jar\451c100d8bf9a65f95ef6aa052d39f8f\aapt2-3.2.1-4818971-windows\aapt2.exe link -I\
              C:\Users\Dell\AppData\Local\Android\Sdk\platforms\android-27\android.jar\
              --manifest\
              C:\Projects\Hamayesh\hamayesh\build\app\intermediates\merged_manifests\debug\processDebugManifest\merged\AndroidManifest.xml\
              -o\
              C:\Projects\Hamayesh\hamayesh\build\app\intermediates\processed_res\debug\processDebugResources\out\resources-debug.ap_\
              -R\
              @C:\Projects\Hamayesh\hamayesh\build\app\intermediates\incremental\processDebugResources\resources-list-for-resources-debug.ap_.txt\
              --auto-add-overlay\
              --java\
              C:\Projects\Hamayesh\hamayesh\build\app\generated\not_namespaced_r_class_sources\debug\processDebugResources\r\
              --custom-package\
              com.example.hamayesh\
              -0\
              apk\
              --output-text-symbols\
              C:\Projects\Hamayesh\hamayesh\build\app\intermediates\symbols\debug\R.txt\
              --no-version-vectors
      Daemon:  AAPT2 aapt2-3.2.1-4818971-windows Daemon #0
    
    * Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
    
    * Get more help at https://help.gradle.org
    
    BUILD FAILED in 1s
    Finished with error: Gradle task assembleDebug failed with exit code 1
    
    opened by aigic 16
  • Build failed with an exception

    Build failed with an exception

    Execution failed for task ':app:lintVitalRelease'.

    Could not resolve all artifacts for configuration ':app:dynamicProfileRuntimeClasspath'. Could not resolve project :fluttertoast. Required by: project :app > java.lang.NullPointerException (no error message)

    opened by pojoba02 15
  • Xcode Parse Error:fatal error: module 'fluttertoast' not found

    Xcode Parse Error:fatal error: module 'fluttertoast' not found

    When I upgrade flutter tost from 8.0.8 to 8.0.9 I am getting this error when I try to Install application first time on simulator after deleting .symblinks,pods,podlock all this file

    https://github.com/ponnamkarthik/FlutterToast/issues/314

    Please check more

    opened by harmispatel 14
  • Flutter toast background color

    Flutter toast background color

    Flutter toast background colour is not working in android 11 but working in android 10 my flutter sdk 2.2.3, please fix as soon as possible

    fluttertoast: ^8.0.8

    opened by Pandi17 14
  • MethodCallHandlerImpl - Build failed

    MethodCallHandlerImpl - Build failed

    I got this error after update from 8.0.3 to 8.0.5.

    e: /home/maril/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttertoast-8.0.4/android/src/main/kotlin/io/github/ponnamkarthik/toast/fluttertoast/MethodCallHandlerImpl.kt: (17, 16): Redeclaration: MethodCallHandlerImpl e: /home/maril/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttertoast-8.0.5/android/src/main/kotlin/io/github/ponnamkarthik/toast/fluttertoast/MethodCallHandlerImpl.kt: (21, 16): Redeclaration: MethodCallHandlerImpl e: /home/maril/snap/flutter/common/flutter/.pub-cache/hosted/pub.dartlang.org/fluttertoast-8.0.5/android/src/main/kotlin/io/github/ponnamkarthik/toast/fluttertoast/MethodCallHandlerImpl.kt: (129, 28): Only safe (?.) or non-null asserted (!!.) calls are allowed on a nullable receiver of type View? FAILURE: Build failed with an exception. What went wrong: Execution failed for task ':fluttertoast:compileReleaseKotlin'. Compilation error. See log for more details Try: Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights. Get more help at https://help.gradle.org BUILD FAILED in 2m 14s

    8.0.3 is OK.

    opened by Mariluk 14
  • Still getting an error with the new release

    Still getting an error with the new release

    This error shows up when i try to build my project A problem occurred configuring project ':fluttertoast'.

    Failed to notify project evaluation listener. java.lang.AbstractMethodError (no error message)

    opened by tonini46 14
  • Build [ release ] failed with an exception ( fluttertoast:verifyReleaseResources )

    Build [ release ] failed with an exception ( fluttertoast:verifyReleaseResources )

    setup

    version: 1.0.0+1
    
    environment:
      sdk: ">=2.0.0-dev.68.0 <3.0.0"
    
    dependencies:
      ...
      fluttertoast: ^3.0.0
      ...
    

    after running flutter clean and flutter build apk

    Initializing gradle...                                       1,7s
    Resolving dependencies...                                   16,1s
    Gradle task 'assembleRelease'...
    registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
    registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
    registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
    registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
    registerResGeneratingTask is deprecated, use registerGeneratedResFolders(FileCollection)
    Note: D:\src\flutter\.pub-cache\hosted\pub.dartlang.org\connectivity-0.4.2\android\src\main\java\io\flutter\plugins\connectivity\ConnectivityPlugin.java uses or overrides a
     deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    Note: D:\src\flutter\.pub-cache\hosted\pub.dartlang.org\firebase_messaging-3.0.0\android\src\main\java\io\flutter\plugins\firebasemessaging\FlutterFirebaseInstanceIDService
    .java uses or overrides a deprecated API.
    Note: Recompile with -Xlint:deprecation for details.
    
             *********************************************************
    WARNING: This version of connectivity will break your Android build if it or its dependencies aren't compatible with AndroidX.
             See https://goo.gl/CP92wY for more information on the problem and how to fix it.
             This warning prints for all Android build failures. The real root cause of the error may be unrelated.
             *********************************************************
    FAILURE: Build failed with an exception.
    
    * What went wrong:
    Execution failed for task ':fluttertoast:verifyReleaseResources'.
    > java.util.concurrent.ExecutionException: com.android.builder.internal.aapt.v2.Aapt2Exception: Android resource linking failed
      D:\codeLabs\algerien_lawyers\build\fluttertoast\intermediates\res\merged\release\values-v28\values-v28.xml:7: error: resource android:attr/dialogCornerRadius not found.
      D:\codeLabs\algerien_lawyers\build\fluttertoast\intermediates\res\merged\release\values-v28\values-v28.xml:11: error: resource android:attr/dialogCornerRadius not found.
      D:\codeLabs\algerien_lawyers\build\fluttertoast\intermediates\res\merged\release\values\values.xml:2601: error: resource android:attr/fontVariationSettings not found.
      D:\codeLabs\algerien_lawyers\build\fluttertoast\intermediates\res\merged\release\values\values.xml:2602: error: resource android:attr/ttcIndex not found.
      error: failed linking references.
    
    
    * Try:
    Run with --stacktrace option to get the stack trace. Run with --info or --debug option to get more log output. Run with --scan to get full insights.
    
    * Get more help at https://help.gradle.org
    
    BUILD FAILED in 1m 55s
    Gradle task 'assembleRelease'... Done                       116,0s
    Gradle task assembleRelease failed with exit code 1
    
    opened by tarekbazine 13
  • showToast parameters have no effect in Android

    showToast parameters have no effect in Android

    When using the following code:

    Fluttertoast.showToast(
      msg: text,
      toastLength: Toast.LENGTH_LONG,
      gravity: ToastGravity.CENTER,
      timeInSecForIosWeb: 1,
      backgroundColor: Colors.green,
      textColor: Colors.white,
      fontSize: 16.0
    );
    

    I'm getting a gray toast with black text located on the bottom of the screen with Android. I'm using version 8.0.6. iOS works perfectly fine.

    Android: Screen Shot 2021-04-28 at 09 33 32

    iOS: Screen Shot 2021-04-28 at 09 33 50

    opened by hm122 12
  • [VERBOSE-2:ui_dart_state.cc(148)] Unhandled Exception: MissingPluginException(No implementation found for method showToast on channel PonnamKarthik/fluttertoast)

    [VERBOSE-2:ui_dart_state.cc(148)] Unhandled Exception: MissingPluginException(No implementation found for method showToast on channel PonnamKarthik/fluttertoast)

    Hello, I reported an error when using this library. [VERBOSE-2:ui_dart_state.cc(148)] Unhandled Exception: MissingPluginException(No implementation found for method showToast on channel PonnamKarthik/fluttertoast)

    opened by Yxliam 12
  • Screen twitches when scrolling

    Screen twitches when scrolling

    After activating the plugin, the application in debug mode on iOS behaves very strangely Maybe I'm doing something wrong.. I'll attach an example with and without the plugin No matter where I use the widget and call the toast, the lags start already when the application starts. Even if I use the copy method somewhere deep in the element tree, this does not prevent the interface from slowing down on the very first page I use toasts when the text is successfully copied. That is, I wrap the text widget in my copy widget inside which the toast method is called on successful copy

    upd: So I did another test. Even if you do not use toast, but simply leave it connected in pubspec, the lags do not disappear anywhere

    upd2: Created a test app and only installed one toast package. The problem has not gone away and is reproduced even on a clean project

    versions: fluttertoast: ^8.1.2 Flutter 3.3.9 Dart 2.18.5 Emulator iphone 14 pro, 16 ios

    Снимок экрана 2022-12-15 в 16 23 36 Снимок экрана 2022-12-15 в 16 23 55 Снимок экрана 2022-12-15 в 16 24 54

    Video of work without a plugin: https://youtube.com/shorts/FU80tfTjXKs?feature=share

    Video of work using the plugin: https://youtube.com/shorts/VsAhlte3B58?feature=share

    opened by Aqwrr 0
  • IOS xcode Error during Archive and Build:

    IOS xcode Error during Archive and Build: "library not found for -lfluttertoast"

    ld: warning: directory not found for option '-L/Users/NestedPie/Library/Developer/Xcode/DerivedData/Runner-feqqdxrdzullfqencnvmxnhxjiew/Build/Products/Debug-iphoneos/fluttertoast' ld: library not found for -lfluttertoast https://www.loom.com/share/f89b07526f224f8f833b33219d339ecc

    opened by dev-nestedpie 0
  • Compiled error on iOS

    Compiled error on iOS

    Hi

    I'm using Cocoapods 1.11.2 and the fluttertoast version is 8.1.1

    Recently after I mixed compile Flutter source code with my iOS project I get a compiler error in FluttertoastPlugin.m as below:

    compile_error

    I think the fluttertoast.podspec for iOS lost the minimum deployment targets info in this change:

    https://github.com/ponnamkarthik/FlutterToast/commit/4479cfdd6180832ffed8dbf134ef3dacdc83fb4e#diff-e1fd3668ee8d92b3d045c31e1e21bb8697c3a5abe903f52ddf46f6f04eba0b1a

    as the pic shows

    podspec

    and after I run the pod install the CocoaPods generate a wrong config for the fluttertoast in Xcode project:

    ios_target

    weak_ref

    opened by YuyeQingshan 1
  • Handle toast globally via StateManagement solution ?

    Handle toast globally via StateManagement solution ?

    Hi,

    First, thanks for this powerful package. I'd like to be able to manage toast apparition using a state management solution such as Riverpod. But to do this, I need to be able to display a toast from a single entry point in the app.

    The thing is, in my MaterialApp, I try to instantiate the ftoast from the MaterialApp context, but then, when I use the ftoast from an other page in the app (using Riverpod), the toast is not showing, and an assertion failed error is thrown

    '_overlay != null': is not true.

    Also I need to mention that I don't want to use the Fluttertoast.showToast() because we want to display icon next to the text..!

    Do you think there's a simple solution for this ?

    opened by guillaumeboussion 4
Owner
Karthik Ponnam
❤️ to Code. Full Stack Developer, Android Developer, Web Development, Known Languages Java, Python so on.,
Karthik Ponnam
The @Flutter Plugin to show native toast on Android

Native Toast The Flutter Plugin to show native toast on Android. How it works? The native_toast plugin works on the basis of the Toast class. in Andro

Mihir Paldhikar 4 Jan 3, 2023
A simple yet powerful Flutter plugin for showing Toast at Android, iOS and Web.

Flutter Toast A simple yet powerful Flutter plugin for showing Toast at Android and iOS. Features: Native Toast Pure Flutter Toaster Installation Add

Eyro Labs 5 Dec 13, 2021
Toast Plugin for Flutter

fluttertoast Toast Library for Flutter Now this toast library supports two kinds of toast messages one which requires BuildContext other with No Build

Karthik Ponnam 1.3k Jan 9, 2023
Toast Plugin for Flutter

fluttertoast Toast Library for Flutter Now this toast library supports two kinds of toast messages one which requires BuildContext other with No Build

Karthik Ponnam 1.1k Feb 12, 2022
FlutterToast - Flutter application to show Android's Toast Message

Android's Toast Message in Flutter Flutter application to show Android's Toast Message. Methods and code to Show Toast message in flutter. To show Toa

Uttam 4 Dec 16, 2022
Reddit like flutter toast

asset_toast A new flutter plugin project. Getting Started | usage AssetToast.show("hello there", context, asset: "assets/im

Griffins Gichure 5 Oct 22, 2021
This is just the simplyfied Flutter Plugin use for one of the popular flutter plugin for social media login.

social_media_logins Flutter Plugin to login via Social Media Accounts. Available Social Media Logins: Facebook Google Apple Getting Started To use thi

Reymark Esponilla 3 Aug 24, 2022
Permission plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API to request and check permissions.

Flutter permission_handler plugin The Flutter permission_handler plugin is build following the federated plugin architecture. A detailed explanation o

Baseflow 1.7k Dec 31, 2022
Unloc customizations of the Permission plugin for Flutter. This plugin provides an API to request and check permissions.

Flutter Permission handler Plugin A permissions plugin for Flutter. This plugin provides a cross-platform (iOS, Android) API to request and check perm

Unloc 1 Nov 26, 2020
Klutter plugin makes it possible to write a Flutter plugin for both Android and iOS using Kotlin only.

The Klutter Framework makes it possible to write a Flutter plugin for both Android and iOS using Kotlin Multiplatform. Instead of writing platform spe

Gillian 33 Dec 18, 2022
A Flutter step_tracker plugin is collect information from user and display progress through a sequence of steps. this plugin also have privilege for fully customization from user side. like flipkart, amazon, myntra, meesho.

step_tracker plugin A Flutter step_tracker plugin is collect information from user and display progress through a sequence of steps. this plugin also

Roshan nahak 5 Oct 21, 2022
Boris Gautier 1 Jan 31, 2022
A Side Menu plugin for flutter and compatible with liquid ui for flutter

Liquid Shrink Side Menu A Side Menu plugin for flutter and compatible with liquid ui Side Menu Types There are 8 configuration of Liquid shrink side m

Raj Singh 18 Nov 24, 2022
FlutterBoost is a Flutter plugin which enables hybrid integration of Flutter for your existing native apps with minimum efforts

中文文档 中文介绍 Release Note v3.0-preview.17 PS: Before updating the beta version, please read the CHANGELOG to see if there are any BREAKING CHANGE Flutter

Alibaba 6.3k Dec 30, 2022
Flutter Counter is a plugin written in dart for flutter which is really simple and customizeable.

Flutter Counter (iOS & Android) Description Flutter Counter is a plugin written in dart for flutter which is really simple and customizeable. Create i

Salmaan Ahmed 15 Sep 18, 2022
Flutter simple image crop - A simple and easy to use flutter plugin to crop image on iOS and Android

Image Zoom and Cropping plugin for Flutter A simple and easy used flutter plugin to crop image on iOS and Android. Installation Add simple_image_crop

null 97 Dec 14, 2021
Flutter-ffmpeg - FFmpeg plugin for Flutter. Not maintained anymore. Superseded by FFmpegKit.

flutter_ffmpeg FFmpeg plugin for Flutter. Supports iOS and Android. Not maintained anymore, superseded by FFmpegKit. See FlutterFFmpeg to FFmpegKit Mi

Taner Şener 635 Dec 22, 2022
Rave flutter - A Flutter plugin for Flutterwaves's rave.

Rave Flutter A robust Flutter plugin for accepting payment on Rave with Card Nigerian Bank Account ACH Payments Mobile money Francophone Africa Mpesa

Wilberforce Uwadiegwu 30 Oct 6, 2022