native_toast 0.0.2 copy "native_toast: ^0.0.2" to clipboard
native_toast: ^0.0.2 copied to clipboard

PlatformAndroid

The Flutter Plugin to show native toast on Android

Native Toast

Pub Version Dart Analyze Workflow Pub Publish Workflow GitHub contributors

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 Android it is used to show a toast message.

native_toast connext with the native Android library to show the toast message via the Flutter's Platform Channel.

Demo #

The below is a demo of the plugin running on the Android device with Android Version 12-light (SDK 31). On both Light and Dark theme.

Light Theme Demo Image Dark Theme Demo Image

Note: The layout of the toast shown depends completely on the Android version and how the OEM has implementd the toast. In the Latest Android version i.e Android 12, the toast is shown in the with a app icon alog with the text.

Usage #

Import the follwing package in your .dart file in which you want to show the toast.

import 'package:native_toast/native_toast.dart';

Use the NativeToast() class to show the toast. as follows:

await NativeToast().makeText(
    message: "This is a Native Toast On Android!",
    duration: NativeToast.shortLength,
);

Inorder to set the duration of the Toast use the duration parameter. duration accepts the int value. There is a inbuilt constants which are used to set the duration namely:

For short Duration

   NativeToast.shortLength

For Long Duration

   NativeToast.longLength

duration is an optional parameter. If not passed, the default duration is NativeToast.shortLength.

Example:

ElevatedButton(
    child: const Text('Show Native Toast'),
    onPressed: () async {
        NativeToast().makeText(
          message: "This is a Native Toast On Android!",
          duration: NativeToast.shortLength,
        );
    },
);

Author #

Mihir Paldhikar

License #

The Project is under MIT License.

Copyright 2021 Mihir Paldhikar

Permission is hereby granted, free of charge, 
to any person obtaining a copy of this software
and associated documentation files
(the"Software"), to deal in the Software without
restriction, including without limitation the
rights to use, copy, modify, merge, publish,
distribute, sublicense, and/or sell copies of
the Software, and to permit persons to whom the
Software is furnished to do so, subject to the
following conditions:

The above copyright notice and this permission
notice shall be included in all copies or
substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT
WARRANTY OF ANY KIND, EXPRESS OR IMPLIED,
INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
MERCHANTABILITY, FITNESS FOR A PARTICULAR
PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR
ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER
IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
ARISING FROM, OUT OF OR IN CONNECTION WITH THE
SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.
6
likes
130
pub points
72%
popularity

Publisher

verified publishermihirpaldhikar.com

The Flutter Plugin to show native toast on Android

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on native_toast