Files
food_delivery_mobile/lib/feature/common/presentation/widgets/w_divider.dart
jahongireshonqulov 41d8a38471 Initial commit
2025-10-23 19:34:54 +05:00

26 lines
471 B
Dart

import '../../../../food_delivery_client.dart';
class WDivider extends StatelessWidget {
const WDivider({
super.key,
this.height = 10,
this.endIndent = 0,
this.indent = 0,
});
final double height;
final double endIndent;
final double indent;
@override
Widget build(BuildContext context) {
return Divider(
color: AppColors.cF6F6F6,
height: height,
thickness: height,
endIndent: 0,
indent: 0,
);
}
}