203 lines
5.1 KiB
Dart
203 lines
5.1 KiB
Dart
import 'package:flutter/material.dart';
|
||
|
||
void main() {
|
||
runApp(const MyApp());
|
||
}
|
||
|
||
class MyApp extends StatelessWidget {
|
||
const MyApp({super.key});
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
return MaterialApp(
|
||
title: 'Flutter Demo',
|
||
theme: ThemeData(
|
||
colorScheme: ColorScheme.fromSeed(seedColor: Colors.pink),
|
||
useMaterial3: true,
|
||
),
|
||
home: const MyHomePage(title: 'Булатова Каринa Раилевна'),
|
||
);
|
||
}
|
||
}
|
||
|
||
class MyHomePage extends StatefulWidget {
|
||
const MyHomePage({super.key, required this.title});
|
||
|
||
final String title;
|
||
|
||
@override
|
||
State<MyHomePage> createState() => _MyHomePageState();
|
||
}
|
||
|
||
class _MyHomePageState extends State<MyHomePage> {
|
||
int _counter = 0;
|
||
|
||
void _incrementCounter() {
|
||
setState(() {
|
||
_counter++;
|
||
});
|
||
}
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
return Scaffold(
|
||
appBar: AppBar(
|
||
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
||
title: Text(widget.title),
|
||
),
|
||
body: const MyWidget(),
|
||
);
|
||
}
|
||
}
|
||
|
||
class _CardData {
|
||
final String text;
|
||
final String descriptionText;
|
||
final IconData icon;
|
||
final String? imageUrl;
|
||
|
||
_CardData(
|
||
this.text, {
|
||
required this.descriptionText,
|
||
this.icon = Icons.ac_unit_outlined,
|
||
this.imageUrl,
|
||
});
|
||
}
|
||
|
||
class MyWidget extends StatelessWidget {
|
||
const MyWidget({super.key});
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
final data = [
|
||
_CardData(
|
||
'Человек-паук',
|
||
descriptionText: 'Чела укусил паук блин',
|
||
imageUrl:
|
||
'https://i.pinimg.com/564x/1b/be/e7/1bbee75b44e22793c42c48e01d3ce3fc.jpg',
|
||
),
|
||
_CardData(
|
||
'Drive',
|
||
descriptionText: 'Райан Гослинг в фильме драйв',
|
||
icon: Icons.star,
|
||
imageUrl:
|
||
'https://i.pinimg.com/564x/24/3f/7e/243f7e8772ed0ff547a403466c99b3ce.jpg',
|
||
),
|
||
_CardData(
|
||
'Головоломка',
|
||
descriptionText: 'Мультфильм про эмоции',
|
||
icon: Icons.woman,
|
||
imageUrl:
|
||
'https://i.pinimg.com/564x/3d/af/1e/3daf1ec0832cf3d6e0bff9db194564f5.jpg',
|
||
),
|
||
_CardData(
|
||
'Бойцовский клуб',
|
||
descriptionText: 'Это чтоо, Тайлер Дердер???',
|
||
icon: Icons.question_answer,
|
||
imageUrl:
|
||
'https://i.pinimg.com/564x/e6/a6/61/e6a661bd29efdeee24e56c930398acca.jpg',
|
||
),
|
||
_CardData(
|
||
'Рапунцель',
|
||
descriptionText: 'Очень мили мультик',
|
||
icon: Icons.favorite_border,
|
||
imageUrl:
|
||
'https://i.pinimg.com/564x/17/46/6b/17466b0834d4a62a23bf0995e78cfc71.jpg',
|
||
),
|
||
];
|
||
return Center(
|
||
child: SingleChildScrollView(
|
||
child: Column(
|
||
mainAxisAlignment: MainAxisAlignment.center,
|
||
children: data.map((e) => _Card.fromData(e)).toList(),
|
||
),
|
||
));
|
||
}
|
||
}
|
||
|
||
class _Card extends StatelessWidget {
|
||
final String text;
|
||
final String descriptionText;
|
||
final IconData icon;
|
||
final String? imageUrl;
|
||
|
||
const _Card(
|
||
this.text, {
|
||
this.icon = Icons.ac_unit_outlined,
|
||
required this.descriptionText,
|
||
this.imageUrl,
|
||
});
|
||
|
||
factory _Card.fromData(_CardData data) => _Card(
|
||
data.text,
|
||
descriptionText: data.descriptionText,
|
||
icon: data.icon,
|
||
imageUrl: data.imageUrl,
|
||
);
|
||
|
||
@override
|
||
Widget build(BuildContext context) {
|
||
return Container(
|
||
margin: const EdgeInsets.only(top: 16),
|
||
padding: const EdgeInsets.all(16),
|
||
decoration: BoxDecoration(
|
||
color: Colors.white70,
|
||
borderRadius: BorderRadius.circular(20),
|
||
border: Border.all(
|
||
color: Colors.grey,
|
||
width: 2,
|
||
),
|
||
boxShadow: [
|
||
BoxShadow(
|
||
color: Colors.grey.withOpacity(.5),
|
||
spreadRadius: 4,
|
||
offset: const Offset(0, 5),
|
||
blurRadius: 8,
|
||
)
|
||
]
|
||
),
|
||
child: Row(
|
||
mainAxisAlignment: MainAxisAlignment.spaceBetween,
|
||
crossAxisAlignment: CrossAxisAlignment.start,
|
||
children: [
|
||
ClipRRect(
|
||
borderRadius: BorderRadius.circular(20),
|
||
child: SizedBox(
|
||
height: 140,
|
||
width: 100,
|
||
child: Image.network(
|
||
imageUrl ?? '',
|
||
fit: BoxFit.cover,
|
||
errorBuilder: (_, __, ___) => const Placeholder(),
|
||
),
|
||
),
|
||
),
|
||
Expanded(
|
||
child: Padding(
|
||
padding: const EdgeInsets.only(left: 8.0),
|
||
child: Column(
|
||
crossAxisAlignment: CrossAxisAlignment.start,
|
||
children: [
|
||
Text(
|
||
text,
|
||
style: Theme.of(context).textTheme.headlineLarge,
|
||
),
|
||
Text(
|
||
descriptionText,
|
||
style: Theme.of(context).textTheme.bodyLarge,
|
||
)
|
||
],
|
||
),
|
||
),
|
||
),
|
||
|
||
Padding(
|
||
padding: const EdgeInsets.only(left: 8.0),
|
||
child: Icon(icon),
|
||
),
|
||
],
|
||
),
|
||
);
|
||
}
|
||
}
|