We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2382be4 commit 275ffa7Copy full SHA for 275ffa7
1 file changed
ouds_core/lib/components/button/ouds_button.dart
@@ -804,6 +804,7 @@ class _OudsButtonState extends State<OudsButton> {
804
/// Builds the circular loading indicator shown inside the button during a loading state.
805
///
806
/// [progress] is clamped to `[0.0, 1.0]`. Pass `null` for an indeterminate spinner.
807
+ //todo will be replaced by OudsCircularProgressIndicator when it will be available in core
808
Widget _buildLoadingIndicator(BuildContext context, double? progress) {
809
{
810
final clampedProgress = progress?.clamp(0.0, 1.0);
0 commit comments