A lightweight progress indicator with linear and circular variants.
import 'package:flutter_bamboo_ui_kit/core.dart';TProgress(value: 0.5);TProgress.circular(
value: 0.75,
size: 120,
strokeWidth: 8.0,
color: Colors.teal,
backgroundColor: Colors.grey.shade200,
valueColor: Colors.white,
);TProgress(
value: 0.4,
color: Colors.indigo,
backgroundColor: Colors.grey[300],
);