zo_animated_border 1.0.0 copy "zo_animated_border: ^1.0.0" to clipboard
zo_animated_border: ^1.0.0 copied to clipboard

Add animated, glowing, and gradient borders to any Flutter widget with zo_animated_border – a powerful and flexible package for modern UIs.

example/lib/main.dart

import 'package:example/example/ex_zo_breathing_border.dart';
import 'package:example/example/ex_zo_color_changing_border.dart';
import 'package:example/example/ex_zo_dotted_border.dart';
import 'package:example/example/ex_zo_edge_glow_border.dart';
import 'package:example/example/ex_zo_gradient_border.dart';
import 'package:example/example/ex_zo_multicolor_border.dart';
import 'package:example/example/ex_zo_pulsating_border.dart';
import 'package:example/example/ex_zo_snake_border.dart';
import 'package:example/example/test_widget.dart';
import 'package:flutter/material.dart';

void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  // This widget is the root of your application.
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      debugShowCheckedModeBanner: false,
      title: 'Flutter Demo',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: TestWidget(),
      // const AnimatedGradientBorderScreen(),
    );
  }
}

class MyHomePage extends StatefulWidget {
  const MyHomePage({super.key, required this.title});

  final String title;

  @override
  State<MyHomePage> createState() => _MyHomePageState();
}

class _MyHomePageState extends State<MyHomePage> {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      backgroundColor: Colors.black,
      appBar: AppBar(
        backgroundColor: Colors.transparent,
        title: Text(
          widget.title,
          style: TextStyle(color: Colors.white),
        ),
      ),
      body: ExZoColorChangingBorder(),
      // This trailing comma makes auto-formatting nicer for build methods.
    );
  }
}
99
likes
0
points
2.51k
downloads

Publisher

verified publisherthezerone.com

Weekly Downloads

Add animated, glowing, and gradient borders to any Flutter widget with zo_animated_border – a powerful and flexible package for modern UIs.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on zo_animated_border