neon_circular_timer 0.0.1 copy "neon_circular_timer: ^0.0.1" to clipboard
neon_circular_timer: ^0.0.1 copied to clipboard

outdated

A new Flutter package project.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:neon_circular_timer/neon_circular_timer.dart';

void main() => runApp(MyApp());

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
        title: 'Material App',
        home: Scaffold(
          backgroundColor: Colors.grey.shade400,
          appBar: AppBar(
            title: Text('Material App Bar'),
          ),
          body: Center(
            child: NeonCircularTimer(
                width: 200,
                duration: 10,
                strokeWidth: 10,
              
                outerStrokeColor: Colors.grey.shade100,
                fillGradient: LinearGradient(colors: [
                  Colors.greenAccent.shade200,
                  Colors.blueAccent.shade400
                ]),
                neonGradient: LinearGradient(colors: [
                  Colors.greenAccent.shade200,
                  Colors.blueAccent.shade400
                ]),
                strokeCap: StrokeCap.round,
                fillColor: Colors.black12,
                neonColor: Colors.blue.shade900),
          ),
        ));
  }
}
57
likes
0
pub points
82%
popularity

Publisher

unverified uploader

A new Flutter package project.

Homepage

License

unknown (LICENSE)

Dependencies

flutter

More

Packages that depend on neon_circular_timer