Bulletin
Flutter package to to show bulletins in your application.
Show some ❤️ and ⭐ the repo
Features
✅ Show Flash Cards
✅ Pop up cards
✅ Animation flash cards
✅ Fully Customizable
Getting started
Include plugin to your project
dependencies:
bulletin: <latest version>
Run pub get
and get packages.
Example
Go to example section in pub.dev to see the full example code.
In GitHub, head over to example/lib/main.dart
to see the full example code.
Bulletin(
icon: const Icon(
Icons.mic_outlined,
size: 20,
),
backgroundColor: const Color(0xffFFF3D0),
children: [
BulletinItem(
text:
"1. This is a bulletin.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi eget elementum libero.",
onTap: () {
debugPrint("OnTap Function called for BulletinItem 1 ");
},
),
BulletinItem(
text:
"2. This is a bulletin.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi eget elementum libero.",
onTap: () {
debugPrint("OnTap Function called for BulletinItem 2 ");
},
),
BulletinItem(
text:
"3. This is a bulletin.Lorem ipsum dolor sit amet, consectetur adipiscing elit. Morbi eget elementum libero.",
onTap: () {
debugPrint("OnTap Function called for BulletinItem 3 ");
},
),
],
),
Project Created & Maintained By
Subham Praharaj
Contributions
Contributions are welcomed!
If you feel that a hook is missing, feel free to open a pull-request.
For a custom-hook to be merged, you will need to do the following:
-
Describe the use-case.
-
Open an issue explaining why we need this hook, how to use it, …
This is important as a hook will not get merged if the hook doens’t appeal to
a large number of people. -
If your hook is rejected, don’t worry! A rejection doesn’t mean that it won’t
be merged later in the future if more people shows an interest in it.
In the mean-time, feel free to publish your hook as a package on https://pub.dev. -
A hook will not be merged unles fully tested, to avoid breaking it inadvertendly in the future.
Stargazers
Forkers
Copyright & License
Code and documentation Copyright (c) 2021 DevsOnFlutter. Code released under the BSD 3-Clause License.
Comments are closed.