基础组件库
25'ten fazla konu seçemezsiniz Konular bir harf veya rakamla başlamalı, kısa çizgiler ('-') içerebilir ve en fazla 35 karakter uzunluğunda olabilir.
 
 
 
 
 

16 satır
430 B

  1. import 'package:flutter/material.dart';
  2. class HomeGoodsItem extends StatelessWidget {
  3. const HomeGoodsItem({Key key}) : super(key: key);
  4. @override
  5. Widget build(BuildContext context) {
  6. return Container(
  7. margin: EdgeInsets.only(left: 12.5, right: 12.5, top: 4, bottom: 4),
  8. decoration: BoxDecoration(
  9. color: Colors.white,
  10. borderRadius: BorderRadius.all(Radius.circular(7.5))),
  11. );
  12. }
  13. }