flowbite_illustrations 0.1.0
flowbite_illustrations: ^0.1.0 copied to clipboard
Collection of beautiful and well-designed illustrations from Flowbite.
example/lib/main.dart
import 'package:flowbite_illustrations/flowbite_illustrations.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MainApp());
}
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'flowbite_illustrations Example',
home: Scaffold(
body: Column(
children: [
Text(
'Flowbite Illustrations Example',
style: Theme.of(context).textTheme.titleLarge,
),
const SizedBox(height: 16.0),
FlowbiteIllustration(
data: FlowbiteIllustrationData.storeDiscountOpen,
color: FlowbiteIllustrationColor.red,
mode: FlowbiteIllustrationMode.dark,
),
],
),
),
);
}
}