Initial commit
This commit is contained in:
25
lib/feature/common/presentation/widgets/w_divider.dart
Normal file
25
lib/feature/common/presentation/widgets/w_divider.dart
Normal file
@@ -0,0 +1,25 @@
|
||||
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,
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user