Widget CustomBottomBar(BuildContext context) {
return Positioned(
bottom: 0,
width: MediaQuery.of(context).size.width,
child: IgnorePointer(
child: Stack(
//alignment: Alignment.topCenter,
children: <Widget>[
Container(
height: 150,
width: MediaQuery.of(context).size.width,
color: Colors.transparent,
child: CircleAvatar(
backgroundColor: Colors.transparent,
child: ClipOval(
child: new FlareActor("assets/robot.flr", alignment: Alignment.center, fit: BoxFit.contain, animation: "buscando",),
),
),
),
],
),
),
);
}
Моему маленькому актеру требуется 1-2 секунды, могу ли я сделать какое-нибудь кодирование, чтобы показать собственный другой Флаттер, пока этот пример загружает CircularProgressIndicator, если да, как я могу это сделать?