I'm new to the flutter world and I would like to know how to remove this white background from the circular progress indicator of flutter. Below I will leave a screenshot and my code.
Code:
import 'package:flutter/material.dart';
void showLoading(BuildContext context, {required String text}) {
showDialog(
context: context,
barrierDismissible: false,
builder: (_) {
return SimpleDialog(
children: <Widget>[
Column(
mainAxisAlignment: MainAxisAlignment.center,
children: <Widget>[
CircularProgressIndicator(
color: Theme.of(context).primaryColor,
),
const SizedBox(height: 10),
Text(text, textAlign: TextAlign.center),
],
),
],
);
},
);
}
void hideLoading(BuildContext context) {
if (Navigator.canPop(context)) {
Navigator.of(context).pop();
}
}
I hope this answer helps you, you need to change the background color under
SimpleDialog