flutter_progress_status 0.0.3 copy "flutter_progress_status: ^0.0.3" to clipboard
flutter_progress_status: ^0.0.3 copied to clipboard

A simple widget that can be used to display progress status of a task, use the provided properties to customise the way you like.

example/lib/main.dart

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

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

class MyApp extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Flutter Progress Status Demo',
      theme: ThemeData(
        primarySwatch: Colors.blue,
      ),
      debugShowCheckedModeBanner: false,
      home: ExamplePage(),
    );
  }
}

class ExamplePage extends StatelessWidget {
  @override
  Widget build(BuildContext context) {
    return Scaffold(
      body: Center(
        child: ProgressStatus(
          radius: 150,
          strokeWidth: 20,
          fillValue: 25,
        ),
      ),
    );
  }
}
11
likes
130
pub points
77%
popularity

Publisher

unverified uploader

A simple widget that can be used to display progress status of a task, use the provided properties to customise the way you like.

Repository (GitHub)
View/report issues

Documentation

API reference

License

MIT (LICENSE)

Dependencies

flutter

More

Packages that depend on flutter_progress_status