v1.1.0delightful_toast
슬라이드로 닫기, 자동 닫기, 스택 애니메이션, 필요 시 닫기 등의 기능을 갖춘 풍부한 상호작용을 위한 매력적인 토스트바 패키지입니다.
241좋아요 2.2천30일 다운로드150Pub 점수
AndroidiOSWebmacOSWindowsLinux
SwaroopSambhayya/delight_toast open-source repository details.
{"sdk":"flutter"}^4.3.0{"sdk":"flutter"}^2.0.0아래는 영문 원문 스냅샷입니다. 최신 내용은 GitHub에서 확인하세요.
A delighful and very interactive toast or a snackbar to add more delight to your application
ezgif com-video-to-gif
https://github.com/SwaroopSambhayya/delight_toast/assets/31922733/45b77a2e-7a73-44a0-899d-8d2f740097fb
In pubspec.yaml
delightful_toast: ^1.1.0
// add the import statement
import 'package:delightful_toast/delight_toast.dart';
Use the toasbar whenever a event has been triggered like onPressed/onTapped or in any other situation where the event is enforced
ElevatedButton( onPressed:(){
DelightToastBar(
builder: (context) => const ToastCard(
leading: Icon(
Icons.flutter_dash,
size: 28,
),
title: Text(
"Hi I'm Dash, Let's have a walkthrough of Delight Toast",
style: TextStyle(
fontWeight: FontWeight.w700,
fontSize: 14,
),
),
),
).show(context);
},
child: const Text("Toast!")
)