home_section_view.dart 576 B

123456789101112131415161718192021222324
  1. import 'package:flutter/material.dart';
  2. class HomeSectionView extends StatelessWidget {
  3. final String title;
  4. HomeSectionView(this.title);
  5. @override
  6. Widget build(BuildContext context) {
  7. return Container(
  8. color: Colors.white,
  9. padding: EdgeInsets.fromLTRB(15, 15, 0, 5),
  10. child: Row(
  11. children: <Widget>[
  12. Image.asset('assets/img/home_tip.png'),
  13. SizedBox(width: 10),
  14. Text(
  15. '$title',
  16. style: TextStyle(fontSize: 17, fontWeight: FontWeight.bold),
  17. )
  18. ],
  19. ),
  20. );
  21. }
  22. }