Material Components for Flutter Basics Rezensionen
1677 Rezensionen
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. · Vor etwa 3 Jahre überprüft
PinkFluffyUnicorn T. · Vor etwa 3 Jahre überprüft
Bao Anh T. · Vor etwa 3 Jahre überprüft
kanishk s. · Vor etwa 3 Jahre überprüft
live server doesn't work
DIVYESH G. · Vor etwa 3 Jahre überprüft
Annwen G. · Vor etwa 3 Jahre überprüft
Eric T. · Vor etwa 3 Jahre überprüft
Rahul K. · Vor etwa 3 Jahre überprüft
Gergely K. · Vor etwa 3 Jahre überprüft
Paulina W. · Vor etwa 3 Jahre überprüft
Al W. · Vor etwa 3 Jahre überprüft
Al W. · Vor etwa 3 Jahre überprüft
AMOGH P. · Vor etwa 3 Jahre überprüft
Cody C. · Vor etwa 3 Jahre überprüft
Lukasz P. · Vor etwa 3 Jahre überprüft
Ashutosh N. · Vor etwa 3 Jahre überprüft
Binoy K. · Vor etwa 3 Jahre überprüft
Luke T. · Vor etwa 3 Jahre überprüft
Hà Huy H. · Vor etwa 3 Jahre überprüft
Methods are outdated
Loïc B. · Vor etwa 3 Jahre überprüft
Clive G. · Vor etwa 3 Jahre überprüft
Thomas H. · Vor etwa 3 Jahre überprüft
TARIQ H. · Vor etwa 3 Jahre überprüft
Laura T. · Vor etwa 3 Jahre überprüft
Xin T. · Vor etwa 3 Jahre überprüft
Wir können nicht garantieren, dass die veröffentlichten Rezensionen von Verbrauchern stammen, die die Produkte gekauft oder genutzt haben. Die Rezensionen werden von Google nicht überprüft.