flowbite_illustrations 0.4.0
flowbite_illustrations: ^0.4.0 copied to clipboard
Collection of beautiful and well-designed illustrations from Flowbite.
Flowbite Illustrations #
Unofficial Flutter package for Flowbite Illustrations. Flowbite Illustrations is made by Themesberg and licensed under CC BY 4.0.
Installation #
Add flowbite_illustrations dependency to your Flutter project:
dependencies:
flowbite_illustrations: ^<latest-version>
Usage #
Import the package in your Flutter file and display your illustration:
import 'package:flowbite_illustrations/flowbite_illustrations.dart';
FlowbiteIllustration(
data: FlowbiteIllustrationData.storeDiscountOpen,
color: FlowbiteIllustrationColor.red, // Optional
mode: FlowbiteIllustrationMode.dark, // Optional
height: 200, // Optional
width: 200, // Optional
)
Note: When using dark mode, it's recommended to use Color(0xFF111928) as background.
Custom ColorMapper #
You can also use custom ColorMapper (from flutter_svg):
import 'package:flutter_svg/flutter_svg.dart';
FlowbiteIllustration(
data: FlowbiteIllustrationData.storeDiscountOpen,
colorMapper: _CustomColorMapper(),
)
Please see _CustomColorMapper implementation in the example.
Issues #
For issues, file directly in the repository.
Illustrations #
All Flowbite illustrations can be viewed on its official site or its Figma file here.
Find this library useful? ❤️ #
Support it by joining stargazers for this repository. ⭐️
Also, follow me on GitHub for my next project! 🐱
License #
Copyright 2026 hanmajid (Muhammad Farhan Majid)
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
