2024-11-01 20:02:56 +04:00
|
|
|
import 'package:flutter/material.dart';
|
|
|
|
|
|
|
|
void main() {
|
|
|
|
runApp(const MyApp());
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyApp extends StatelessWidget {
|
|
|
|
const MyApp({super.key});
|
|
|
|
|
2024-11-12 14:00:50 +04:00
|
|
|
@override
|
2024-11-01 20:02:56 +04:00
|
|
|
Widget build(BuildContext context) {
|
|
|
|
return MaterialApp(
|
|
|
|
title: 'Flutter Demo',
|
2024-11-12 14:00:50 +04:00
|
|
|
debugShowCheckedModeBanner: false,
|
2024-11-01 20:02:56 +04:00
|
|
|
theme: ThemeData(
|
2024-11-12 14:00:50 +04:00
|
|
|
colorScheme: ColorScheme.fromSeed(seedColor: Colors.white),
|
2024-11-01 20:02:56 +04:00
|
|
|
useMaterial3: true,
|
|
|
|
),
|
2024-11-12 14:00:50 +04:00
|
|
|
home: const MyHomePage(title: 'Блохин Дмитрий Алексеевич'),
|
2024-11-01 20:02:56 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class MyHomePage extends StatefulWidget {
|
|
|
|
const MyHomePage({super.key, required this.title});
|
|
|
|
|
|
|
|
final String title;
|
|
|
|
|
|
|
|
@override
|
|
|
|
State<MyHomePage> createState() => _MyHomePageState();
|
|
|
|
}
|
|
|
|
|
|
|
|
class _MyHomePageState extends State<MyHomePage> {
|
|
|
|
@override
|
|
|
|
Widget build(BuildContext context) {
|
2024-11-12 14:00:50 +04:00
|
|
|
final data = [
|
|
|
|
const _CardData(
|
|
|
|
'Freeze',
|
|
|
|
descriptionText: 'lol',
|
|
|
|
imageUrl: 'https://steamuserimages-a.akamaihd.net/ugc/974353381258701515/67DFC214C7166FAECF380BFACC10976AA2D86D1D/?imw=512&imh=512&ima=fit&impolicy=Letterbox&imcolor=%23000000&letterbox=true',
|
|
|
|
),
|
|
|
|
const _CardData(
|
|
|
|
'Hi',
|
|
|
|
descriptionText: 'aboba',
|
|
|
|
icon: Icons.abc_rounded,
|
|
|
|
imageUrl: 'https://i.pinimg.com/736x/c1/43/f8/c143f8b663bc1f6ba4e0d63fe3295bc3.jpg',
|
|
|
|
),
|
|
|
|
const _CardData(
|
|
|
|
'SUI',
|
|
|
|
descriptionText: 'Portugal',
|
|
|
|
icon: Icons.portrait,
|
|
|
|
imageUrl: 'https://us-tuna-sounds-images.voicemod.net/1871fd78-7359-4b9e-8e65-957cc1d35de5-1692182201559.jpg',
|
|
|
|
),
|
|
|
|
];
|
2024-11-01 20:02:56 +04:00
|
|
|
return Scaffold(
|
|
|
|
appBar: AppBar(
|
2024-11-12 14:00:50 +04:00
|
|
|
backgroundColor: Colors.deepPurple,
|
2024-11-01 20:02:56 +04:00
|
|
|
title: Text(widget.title),
|
|
|
|
),
|
|
|
|
body: Center(
|
2024-11-12 14:00:50 +04:00
|
|
|
child: SingleChildScrollView(
|
|
|
|
child: Column(
|
|
|
|
mainAxisAlignment: MainAxisAlignment.center,
|
|
|
|
children: data.map((e) => _Card.fromData(e)).toList(),
|
|
|
|
),
|
2024-11-01 20:02:56 +04:00
|
|
|
),
|
|
|
|
),
|
2024-11-12 14:00:50 +04:00
|
|
|
);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
class _CardData {
|
|
|
|
final String text;
|
|
|
|
final String descriptionText;
|
|
|
|
final IconData icon;
|
|
|
|
final String? imageUrl;
|
|
|
|
|
|
|
|
const _CardData(
|
|
|
|
this.text, {
|
|
|
|
required this.descriptionText,
|
|
|
|
this.icon = Icons.add_ic_call,
|
|
|
|
this.imageUrl,
|
|
|
|
});
|
|
|
|
}
|
|
|
|
|
|
|
|
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.greenAccent,
|
|
|
|
borderRadius: BorderRadius.circular(15),
|
|
|
|
border: Border.all(
|
|
|
|
color: Colors.black,
|
|
|
|
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(15),
|
|
|
|
child: SizedBox(
|
|
|
|
height: 140,
|
|
|
|
width: 100,
|
|
|
|
child: Image.network(
|
|
|
|
imageUrl ?? '',
|
|
|
|
fit: BoxFit.cover,
|
|
|
|
errorBuilder: (_, __, ___) => const Placeholder(),
|
|
|
|
)),
|
|
|
|
),
|
|
|
|
Flexible(
|
|
|
|
child: Padding(
|
|
|
|
padding: const EdgeInsets.only(left: 3.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),
|
|
|
|
),
|
|
|
|
],
|
|
|
|
),
|
|
|
|
);
|
2024-11-01 20:02:56 +04:00
|
|
|
}
|
|
|
|
}
|