fix: 尝试解决网络异常导致的白屏 issues #67

This commit is contained in:
guozhigq
2023-09-07 20:03:48 +08:00
parent 392980f0e8
commit 69f846760d
8 changed files with 29 additions and 3 deletions

View File

@ -84,6 +84,9 @@ class _LivePageState extends State<LivePage> {
future: _futureBuilderFuture,
builder: (context, snapshot) {
if (snapshot.connectionState == ConnectionState.done) {
if (snapshot.data == null) {
return const SliverToBoxAdapter(child: SizedBox());
}
Map data = snapshot.data as Map;
if (data['status']) {
return SliverLayoutBuilder(