fix: Move to latest null safe sdk
This commit is contained in:
parent
2b939392e9
commit
33a7a00311
6 changed files with 10 additions and 19 deletions
|
|
@ -432,7 +432,7 @@ class _ChatListViewBody extends StatelessWidget {
|
|||
return FutureBuilder<void>(
|
||||
future: controller.waitForFirstSync(),
|
||||
builder: (BuildContext context, snapshot) {
|
||||
if (Matrix.of(context).client.prevBatch != null) {
|
||||
if (snapshot.connectionState == ConnectionState.done) {
|
||||
final rooms = Matrix.of(context)
|
||||
.client
|
||||
.rooms
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue