30 lines
832 B
Dart
30 lines
832 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:tm_app/core/theme/colors.dart';
|
|
import 'package:tm_app/core/utils/size_config.dart';
|
|
import 'package:tm_app/views/tenders/widgets/main_tenders_slider.dart';
|
|
|
|
class DesktopTendersPage extends StatelessWidget {
|
|
const DesktopTendersPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return SafeArea(
|
|
child: Scaffold(
|
|
backgroundColor: AppColors.backgroundColor,
|
|
body: Center(
|
|
child: SingleChildScrollView(
|
|
child: SizedBox(
|
|
width: 740,
|
|
height: 800,
|
|
child: Padding(
|
|
padding: EdgeInsets.symmetric(vertical: 24.0.h()),
|
|
child: MainTendersSlider(isDesktop: true),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
}
|