diff --git a/add_to_app/books/flutter_module_books/lib/main.dart b/add_to_app/books/flutter_module_books/lib/main.dart index b56b2a8a5..edd9ef179 100644 --- a/add_to_app/books/flutter_module_books/lib/main.dart +++ b/add_to_app/books/flutter_module_books/lib/main.dart @@ -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',