smoke_effect 0.0.1
smoke_effect: ^0.0.1 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 #
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,
),
),
);
}
}