100 lines
3.1 KiB
Dart
100 lines
3.1 KiB
Dart
import 'package:flutter/material.dart';
|
|
|
|
class DescItem extends StatelessWidget {
|
|
const DescItem({
|
|
super.key,
|
|
required this.imageDescItem,
|
|
required this.titleDescItem,
|
|
required this.subtitleDescItem,
|
|
required this.contentDescItem,
|
|
});
|
|
|
|
final String imageDescItem;
|
|
final String titleDescItem;
|
|
final String subtitleDescItem;
|
|
final String contentDescItem;
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Column(
|
|
mainAxisAlignment: MainAxisAlignment.end,
|
|
children: [
|
|
Stack(
|
|
alignment: Alignment.topCenter,
|
|
children: [
|
|
Column(
|
|
children: [
|
|
SizedBox(height: MediaQuery.of(context).size.height * 0.055),
|
|
|
|
Container(
|
|
width: MediaQuery.of(context).size.width,
|
|
height: MediaQuery.of(context).size.height * 0.8,
|
|
decoration: const BoxDecoration(
|
|
color: Color(0xff42e12e),
|
|
borderRadius: BorderRadius.only(
|
|
topLeft: Radius.circular(50),
|
|
topRight: Radius.circular(50),
|
|
),
|
|
),
|
|
),
|
|
],
|
|
),
|
|
|
|
Container(
|
|
width: MediaQuery.of(context).size.width * 0.55,
|
|
height: MediaQuery.of(context).size.height * 0.25,
|
|
decoration: BoxDecoration(
|
|
color: Colors.white,
|
|
borderRadius: BorderRadius.circular(25),
|
|
image: DecorationImage(
|
|
image: AssetImage(imageDescItem),
|
|
),
|
|
),
|
|
),
|
|
|
|
Padding(
|
|
padding: EdgeInsets.only(top: MediaQuery.of(context).size.height * 0.265),
|
|
child: Text(
|
|
titleDescItem,
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontFamily: "GoogleSans-Bold",
|
|
fontSize: MediaQuery.of(context).size.width * 0.075,
|
|
),
|
|
),
|
|
),
|
|
|
|
Padding(
|
|
padding: EdgeInsets.only(top: MediaQuery.of(context).size.height * 0.31),
|
|
child: Text(
|
|
subtitleDescItem,
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontFamily: "GoogleSans-Bold",
|
|
fontSize: MediaQuery.of(context).size.width * 0.065,
|
|
),
|
|
),
|
|
),
|
|
|
|
Padding(
|
|
padding: EdgeInsets.only(
|
|
top: MediaQuery.of(context).size.height * 0.365,
|
|
left: MediaQuery.of(context).size.width * 0.075,
|
|
right: MediaQuery.of(context).size.width * 0.075,
|
|
),
|
|
child: Text(
|
|
contentDescItem,
|
|
textAlign: TextAlign.justify,
|
|
style: TextStyle(
|
|
color: Colors.white,
|
|
fontFamily: "GoogleSans-Regular",
|
|
fontSize: MediaQuery.of(context).size.width * 0.05,
|
|
),
|
|
),
|
|
),
|
|
]
|
|
),
|
|
],
|
|
);
|
|
}
|
|
} |