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