34 lines
970 B
Dart
34 lines
970 B
Dart
import 'package:flutter/material.dart';
|
|
|
|
class DashSeparator extends StatelessWidget {
|
|
final double height;
|
|
final Color color;
|
|
|
|
const DashSeparator({this.height = 1, this.color = Colors.black});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return LayoutBuilder(
|
|
builder: (BuildContext context, BoxConstraints constraints) {
|
|
final boxWidth = constraints.constrainWidth();
|
|
final dashWidth = 10.0;
|
|
final dashHeight = height;
|
|
final dashCount = (boxWidth / (2 * dashWidth)).floor();
|
|
return Flex(
|
|
children: List.generate(dashCount, (_) {
|
|
return SizedBox(
|
|
width: dashWidth,
|
|
height: dashHeight,
|
|
child: DecoratedBox(
|
|
decoration: BoxDecoration(color: color),
|
|
),
|
|
);
|
|
}),
|
|
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
|
direction: Axis.horizontal,
|
|
);
|
|
},
|
|
);
|
|
}
|
|
}
|