mesh_gradient 1.3.2 mesh_gradient: ^1.3.2 copied to clipboard
Widgets which create beautiful fluid-like mesh gradients in Flutter.
import 'dart:math';
import 'package:flutter/material.dart';
import 'package:mesh_gradient/mesh_gradient.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatefulWidget {
const MyApp({super.key});
@override
State<MyApp> createState() => _MyAppState();
}
class _MyAppState extends State<MyApp> with TickerProviderStateMixin {
late final MeshGradientController _controller;
@override
void initState() {
super.initState();
_controller = MeshGradientController(
points: [
MeshGradientPoint(
position: const Offset(
-1,
0.2,
),
color: const Color.fromARGB(255, 251, 0, 105),
),
MeshGradientPoint(
position: const Offset(
2,
0.6,
),
color: const Color.fromARGB(255, 69, 18, 255),
),
MeshGradientPoint(
position: const Offset(
0.7,
0.3,
),
color: const Color.fromARGB(255, 0, 255, 198),
),
MeshGradientPoint(
position: const Offset(
0.4,
0.8,
),
color: const Color.fromARGB(255, 255, 81, 0),
),
],
vsync: this,
);
}
@override
void dispose() {
_controller.dispose();
super.dispose();
}
@override
Widget build(BuildContext context) {
return MaterialApp(
title: 'mesh_gradient example',
debugShowCheckedModeBanner: false,
theme: ThemeData(
colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
useMaterial3: true,
),
home: Scaffold(
body: Stack(
children: [
Positioned.fill(
child: MeshGradient(
controller: _controller,
options: MeshGradientOptions(
blend: 3.5,
noiseIntensity: 0.5,
),
),
),
Positioned.fill(
bottom: 100,
child: Align(
alignment: Alignment.bottomCenter,
child: ElevatedButton(
onPressed: () {
_controller.animateSequence(
duration: const Duration(seconds: 4),
sequences: [
AnimationSequence(
pointIndex: 0,
newPoint: MeshGradientPoint(
position: Offset(
Random().nextDouble() * 2 - 0.5,
Random().nextDouble() * 2 - 0.5,
),
color: _controller.points.value[0].color,
),
interval: const Interval(
0,
0.5,
curve: Curves.easeInOut,
),
),
AnimationSequence(
pointIndex: 1,
newPoint: MeshGradientPoint(
position: Offset(
Random().nextDouble() * 2 - 0.5,
Random().nextDouble() * 2 - 0.5,
),
color: _controller.points.value[1].color,
),
interval: const Interval(
0.25,
0.75,
curve: Curves.easeInOut,
),
),
AnimationSequence(
pointIndex: 2,
newPoint: MeshGradientPoint(
position: Offset(
Random().nextDouble() * 2 - 0.5,
Random().nextDouble() * 2 - 0.5,
),
color: _controller.points.value[2].color,
),
interval: const Interval(
0.5,
1,
curve: Curves.easeInOut,
),
),
AnimationSequence(
pointIndex: 3,
newPoint: MeshGradientPoint(
position: Offset(
Random().nextDouble() * 2 - 0.5,
Random().nextDouble() * 2 - 0.5,
),
color: _controller.points.value[3].color,
),
interval: const Interval(
0.75,
1,
curve: Curves.easeInOut,
),
),
],
);
},
child: const Text("Animate"),
),
),
),
],
),
),
);
}
}