Component
ProgressDisplay
Flutter implementation of the ProgressDisplay component.
Usage
dart
import 'package:refraction_ui/refraction_ui.dart';
class MyProgressDisplayExample extends StatelessWidget {
@override
Widget build(BuildContext context) {
return ProgressDisplay(
// Add props here
);
}
}