flutter_animated_bubble_background 0.0.1
flutter_animated_bubble_background: ^0.0.1 copied to clipboard
A Flutter package that provides an animated background widget with floating bubbles and customizable gradient colors. Perfect for creating engaging and beautiful app backgrounds.
import 'package:example/src/pages/home_example.dart';
import 'package:flutter/material.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'Animated Bubble Background Demo',
theme: ThemeData(primarySwatch: Colors.blue),
home: const HomeExample(),
debugShowCheckedModeBanner: false,
);
}
}