animated_border_widgets 0.1.0
animated_border_widgets: ^0.1.0 copied to clipboard
Animated gradient border widgets for Flutter with tap boost and press-and-hold acceleration support.
import 'package:flutter/material.dart';
import 'example_page.dart';
void main() {
runApp(const _ExampleApp());
}
class _ExampleApp extends StatelessWidget {
const _ExampleApp();
@override
Widget build(final BuildContext context) {
return const MaterialApp(
debugShowCheckedModeBanner: false,
home: ExamplePage(),
);
}
}