Last updated:
0 purchases
nex common toast
A Flutter package that provides a convenient way to display customizable toast messages using the oktoast package.
Features #
Display toast messages with customizable parameters such as message text, background color, position, duration, text style, and more.
Easy to integrate into Flutter applications.
Installation #
Add nex_common_toast to your pubspec.yaml file:
dependencies:
flutter:
sdk: flutter
nex_common_toast: <latest-version>
copied to clipboard
Usage #
Import the package in your Dart file:
import 'package:flutter/material.dart';
import 'package:nex_common_toast/nex_common_toast.dart';
class MyToast extends ToastFile {
void showToastMessage() {
toastMsg(
msg: "Hello, World!",
backgroundColor: Colors.blue,
position: ToastPosition.bottom,
duration: Duration(seconds: 3),
textStyle: TextStyle(fontSize: 16.0, color: Colors.white),
radius: 10.0,
textOverflow: TextOverflow.ellipsis,
textMaxLines: 2,
textAlign: TextAlign.left,
textDirection: TextDirection.rtl,
);
}
}
copied to clipboard
Authers #
Chandan Kumar Singh
Shubhpreet Rana
For personal and professional use. You cannot resell or redistribute these repositories in their original state.
There are no reviews.