1
0
mirror of https://github.com/flutter/samples.git synced 2025-11-08 13:58:47 +00:00

Fix stable CI (#1395)

This commit is contained in:
Brett Morgan
2022-08-30 09:46:01 +10:00
committed by GitHub
parent 5bafa16789
commit 694c1314ee

View File

@@ -212,13 +212,13 @@ class BookForm extends StatelessWidget {
),
const Divider(),
const SizedBox(height: 32),
if (book.thumbnail?.url != null) ... [
if (book.thumbnail?.url != null) ...[
Center(
child: Image.network(book.thumbnail!.url!),
),
const SizedBox(height: 32),
],
if (book.summary != null) ... [
if (book.summary != null) ...[
const Center(
child: Text(
'BOOK DESCRIPTION',