我想在使用FutureProvider
时在loading
期间显示Indicator
,但大小保持在最大值,无法减小。
return ref.watch(futureProvider).when(
loading: () => Container(
height: 10,
width: 10,
constraints: BoxConstraints(maxHeight: 10, maxWidth: 10),
child: const Indicator(),
),
error: (error, stack) => SizedBox(),
data: (answer) => SizedBox(child: answer));
字符串
我尝试用Container
Package 它,并使用BoxConstraints
指定大小,但它不起作用。如何指定Indicator
的大小以在加载时显示?
1条答案
按热度按时间hgtggwj01#
你可以尝试将
Container
设置为Center
的子元素吗?字符串