destination_heading.dart
1.41 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
import 'package:like/widgets/responsive.dart';
import 'package:flutter/material.dart';
class DestinationHeading extends StatelessWidget {
const DestinationHeading({
Key? key,
required this.screenSize,
}) : super(key: key);
final Size screenSize;
@override
Widget build(BuildContext context) {
return ResponsiveWidget.isSmallScreen(context)
? Container(
padding: EdgeInsets.only(
top: screenSize.height / 20,
bottom: screenSize.height / 20,
),
width: screenSize.width,
// color: Colors.black,
child: Text(
'Destinations diversity',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 24,
fontFamily: 'Montserrat',
fontWeight: FontWeight.bold,
),
),
)
: Container(
padding: EdgeInsets.only(
top: screenSize.height / 10,
bottom: screenSize.height / 15,
),
width: screenSize.width,
// color: Colors.black,
child: Text(
'Destinations diversity',
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 40,
fontFamily: 'Montserrat',
fontWeight: FontWeight.bold,
),
),
);
}
}