zo_animated_border 1.0.6
zo_animated_border: ^1.0.6 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.
import 'dart:math' as math;
import 'package:example/example/ex_text_border.dart';
import 'package:example/example/ex_zo_scribble_border.dart';
import 'package:flutter/material.dart';
import 'package:characters/characters.dart';
import 'package:zo_animated_border/painter/zo_rotating_text_border_painter.dart';
import 'package:zo_animated_border/zo_animated_border.dart';
void main() {
runApp(const MyApp());
}
class MyApp extends StatelessWidget {
const MyApp({super.key});
@override
Widget build(BuildContext context) {
return MaterialApp(
debugShowCheckedModeBanner: false,
theme: ThemeData.dark(),
home: const ExZoHandDrawBorder(),
);
}
}