26 lines
518 B
Dart
Raw Normal View History

2024-11-02 21:09:05 +04:00
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),
),
),
);
}
}