3
This commit is contained in:
parent
d383b6149f
commit
8978b5624d
@ -46,16 +46,40 @@ class _MyHomePageState extends State<MyHomePage> {
|
|||||||
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
backgroundColor: Theme.of(context).colorScheme.inversePrimary,
|
||||||
title: Text(widget.title),
|
title: Text(widget.title),
|
||||||
),
|
),
|
||||||
body: const MyWidget(),
|
body: const GrandWidget(),
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
class MyWidget extends StatelessWidget {
|
class GrandWidget extends StatelessWidget {
|
||||||
const MyWidget({super.key});
|
const GrandWidget({super.key});
|
||||||
|
|
||||||
@override
|
@override
|
||||||
Widget build(BuildContext context) {
|
Widget build(BuildContext context) {
|
||||||
return const Placeholder();
|
final data = [
|
||||||
|
_CardData(text: "Батон",
|
||||||
|
info: "Белый хлеб, испечённый в виде продолговатой булки",
|
||||||
|
urlImage: "https://ru.freepik.com/free-photo/baton-bread-and-flour-on-table_8136565.htm#query=%D0%B1%D0%B0%D0%B3%D0%B5%D1%82&position=46&from_view=keyword&track=ais_hybrid&uuid=a7873756-425e-4011-bf7c-4cca79471eef"),
|
||||||
|
_CardData(text: "Багет",
|
||||||
|
info: "Длинный тонкий вид хлеба французского происхождения",
|
||||||
|
urlImage: "https://ru.freepik.com/free-photo/loaf-of-white-bread_7105195.htm#query=%D0%B1%D0%B0%D0%B3%D0%B5%D1%82&position=33&from_view=keyword&track=ais_hybrid&uuid=a7873756-425e-4011-bf7c-4cca79471eef"),
|
||||||
|
_CardData(text: "Круассан",
|
||||||
|
info: "Небольшое мучное кондитерское изделие, булочка в форме полумесяца из слоёного теста",
|
||||||
|
urlImage: "https://ru.freepik.com/free-photo/top-view-vegan-baked-products-arrangement_39543140.htm#query=%D0%B1%D0%B0%D0%B3%D0%B5%D1%82&position=21&from_view=keyword&track=ais_hybrid&uuid=a7873756-425e-4011-bf7c-4cca79471eef")
|
||||||
|
];
|
||||||
|
return Center(
|
||||||
|
child: Container(
|
||||||
|
padding: const EdgeInsets.all(16),
|
||||||
|
child: Text("Текст",
|
||||||
|
)),
|
||||||
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
class _CardData {
|
||||||
|
final String text;
|
||||||
|
final String info;
|
||||||
|
final String urlImage;
|
||||||
|
|
||||||
|
_CardData({required this.text, required this.info, required this.urlImage});
|
||||||
|
}
|
Loading…
Reference in New Issue
Block a user