26 lines
518 B
Dart
26 lines
518 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),
|
||
),
|
||
),
|
||
);
|
||
}
|
||
}
|
||
|
||
|