Initial commit

This commit is contained in:
jahongireshonqulov
2025-10-23 19:34:54 +05:00
commit 41d8a38471
212 changed files with 8757 additions and 0 deletions

View 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,
);
}
}