smoke_effect 0.0.2
smoke_effect: ^0.0.2 copied to clipboard
A flutter package to add background smoke effect of custom color or gradient
A flutter package to add background smoke effect of custom color or gradient
Features #
https://github.com/user-attachments/assets/8dacbc37-b0b7-46be-a23c-f82beaedb237
Getting started #
Add this package in pubspec.yaml and just use the SmokeEffect Widget
Usage #
Sample code to get started
class MainApp extends StatelessWidget {
const MainApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Container(
child: const SmokeHomeWidget(
gradientSmoke: false,
singleSmokeColor: Colors.blue,
),
),
);
}
}