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

Progress Circulare loading,

example/lib/main.dart

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

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Demo',
      home: const MyHomePage(title: 'Flutter Demo Home Page'),
    );
  }
}

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(
      body: circularprogress(
        size: 60,
        height: 6,
        width: 16,
      )
    );
  }
}
0
likes
120
points
26
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

Progress Circulare loading,

License

unknown (license)

Dependencies

flutter

More

Packages that depend on circularprogress