Skip to content

Latest commit

 

History

History
38 lines (30 loc) · 527 Bytes

File metadata and controls

38 lines (30 loc) · 527 Bytes

Progress

A lightweight progress indicator with linear and circular variants.

📦 Import

import 'package:flutter_bamboo_ui_kit/core.dart';

Usage

TProgress(value: 0.5);

Variant

Circular

TProgress.circular(
  value: 0.75,
  size: 120,
  strokeWidth: 8.0,
  color: Colors.teal,
  backgroundColor: Colors.grey.shade200,
  valueColor: Colors.white,
);

Linear

TProgress(
  value: 0.4,
  color: Colors.indigo,          
  backgroundColor: Colors.grey[300],
);