基础组件库
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

16 lines
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. }