import 'package:flutter/material.dart'; import 'package:healthcare_user/settings.dart'; class Prescriptions extends StatefulWidget { const Prescriptions({Key? key}) : super(key: key); @override State createState() => _PrescriptionsState(); } class _PrescriptionsState extends State { @override Widget build(BuildContext context) { return Scaffold( appBar: AppSettings.appBar('Prescriptions'), body: Container(), ); } }