import 'package:flutter/material.dart'; class DividerCustomHome extends StatelessWidget { const DividerCustomHome({super.key}); @override Widget build(BuildContext context) { return Row( children: [ Expanded( child: Container( height: 5.0, color: Colors.green, ), ), Expanded( child: Container( height: 5.0, color: Colors.green, ), ), Expanded( child: Container( height: 5.0, color: Colors.green, ), ), Expanded( child: Container( height: 5.0, color: Colors.green, ), ), ], ); } }