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,24 @@
import '../../../../food_delivery_client.dart';
class WLayout extends StatelessWidget {
const WLayout({
super.key,
this.bgColor = AppColors.cFFFFFF,
this.bottom = true,
this.top = true,
required this.child,
});
final Color bgColor;
final bool bottom;
final bool top;
final Widget child;
@override
Widget build(BuildContext context) {
return Container(
color: bgColor,
child: SafeArea(top: top, bottom: bottom, child: child),
);
}
}