23 lines
521 B
Dart
23 lines
521 B
Dart
|
import 'package:flutter/material.dart';
|
|||
|
|
|||
|
class DetailPage extends StatelessWidget {
|
|||
|
final String info;
|
|||
|
|
|||
|
const DetailPage({super.key, required this.info});
|
|||
|
|
|||
|
@override
|
|||
|
Widget build(BuildContext context) {
|
|||
|
return Scaffold(
|
|||
|
appBar: AppBar(
|
|||
|
title: const Text('Информация о продукции'),
|
|||
|
),
|
|||
|
body: Padding(
|
|||
|
padding: const EdgeInsets.all(16.0),
|
|||
|
child: Text(
|
|||
|
info,
|
|||
|
style: const TextStyle(fontSize: 18.0),
|
|||
|
),
|
|||
|
),
|
|||
|
);
|
|||
|
}
|
|||
|
}
|