Material Components for Flutter Basics Reviews
1676 reviews
Bartosz C. · Reviewed almost 3 years ago
Pawel G. · Reviewed almost 3 years ago
Robin K. · Reviewed almost 3 years ago
Puteri A. · Reviewed almost 3 years ago
Jose B. · Reviewed almost 3 years ago
Great content. But not amazing coding experience using the built-in IDE as the network connection is horrible based in China.
Amy L. · Reviewed almost 3 years ago
Mohamed Ali C. · Reviewed almost 3 years ago
Ayah T. · Reviewed almost 3 years ago
Saeed A. · Reviewed almost 3 years ago
Younes C. · Reviewed almost 3 years ago
Do Tran Nhat D. · Reviewed almost 3 years ago
Artur D. · Reviewed almost 3 years ago
Trần Quang H. · Reviewed almost 3 years ago
Laith R. · Reviewed almost 3 years ago
awesome
Dominik P. · Reviewed almost 3 years ago
Tiến T. · Reviewed almost 3 years ago
TALA A. · Reviewed almost 3 years ago
QASIM A. · Reviewed almost 3 years ago
Jay Y. · Reviewed almost 3 years ago
Awesome !
David Alejandro G. · Reviewed almost 3 years ago
LTI S. · Reviewed almost 3 years ago
LTI S. · Reviewed almost 3 years ago
ahmed r. · Reviewed almost 3 years ago
not everything worked. // TODO: Make a collection of cards (102) // Replace this entire method List<Card> _buildGridCards(BuildContext context) { List<Product> products = ProductsRepository.loadProducts(Category.all); if (products == null || products.isEmpty) { return const <Card>[]; } final ThemeData theme = Theme.of(context); final NumberFormat formatter = NumberFormat.simpleCurrency( locale: Localizations.localeOf(context).toString()); return products.map((product) { return Card( clipBehavior: Clip.antiAlias, // TODO: Adjust card heights (103) child: Column( // TODO: Center items on the card (103) crossAxisAlignment: CrossAxisAlignment.start, children: <Widget>[ AspectRatio( aspectRatio: 18 / 11, child: Image.asset( product.assetName, package: product.assetPackage, // TODO: Adjust the box size (102) fit: BoxFit.fitWidth, ), ), Expanded( child: Padding( padding: EdgeInsets.fromLTRB(16.0, 12.0, 16.0, 8.0), child: Column( // TODO: Align labels to the bottom and center (103) crossAxisAlignment: CrossAxisAlignment.start, // TODO: Change innermost Column (103) children: <Widget>[ // TODO: Handle overflowing labels (103) Text( product.name, style: theme.textTheme.headline6, maxLines: 1, ), SizedBox(height: 8.0), Text( formatter.format(product.price), style: theme.textTheme.subtitle2, ), ], ), ), ), ], ), ); }).toList(); } didn'T work
Michael K. · Reviewed almost 3 years ago
We do not ensure the published reviews originate from consumers who have purchased or used the products. Reviews are not verified by Google.