Docs
Border Beam
Border Beam
An interesting highlight for your cards.
Status: initializing
Installation
Copy and paste the following code into your project.
Please find it here
Update the import paths to match your project setup.
Usage
BorderBeam(
duration: 7,
colorFrom: Colors.blue,
colorTo: Colors.purple,
staticBorderColor: const Color.fromARGB(255, 39, 39, 42),
borderRadius: BorderRadius.circular(20),
padding: EdgeInsets.all(16),
child: Container(
width: 200,
height: 200,
child: const Center(
child: Text('Border Beam', style: TextStyle(fontSize: 24, color: Colors.white)),
),
),
)