folder structure changes

This commit is contained in:
amirrezaghabeli
2025-08-03 10:50:34 +03:30
parent 13ddae5191
commit 8924860e64
19 changed files with 185 additions and 13 deletions
+17
View File
@@ -0,0 +1,17 @@
import 'package:flutter/material.dart';
import '../../core/utils/size_config.dart';
class TendersScreen extends StatelessWidget {
const TendersScreen({super.key});
@override
Widget build(BuildContext context) {
return Scaffold(
body: Padding(
padding: EdgeInsets.symmetric(horizontal: 24.0.w(), vertical: 24.0.h()),
child: Column(children: [Text('Tenders')]),
),
);
}
}