123456789101112131415161718 |
- import 'package:flutter/material.dart';
- import 'package:vitalapp/pages/check/prescription/prescription_form.dart';
- class Prescription extends StatelessWidget {
- const Prescription({
- super.key,
- required this.prescription,
- });
- final String prescription;
- @override
- Widget build(BuildContext context) {
- return PrescriptionForm(
- prescription,
- );
- }
- }
|