You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
570 B
Dart
23 lines
570 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hmg_patient_app_new/theme/colors.dart';
|
|
|
|
class ToDoPage extends StatelessWidget {
|
|
const ToDoPage({super.key});
|
|
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return Scaffold(
|
|
backgroundColor: AppColors.bgScaffoldColor,
|
|
appBar: AppBar(
|
|
title: const Text('Appointments'),
|
|
backgroundColor: AppColors.bgScaffoldColor,
|
|
),
|
|
body: const Center(
|
|
child: Text(
|
|
'Appointments Page',
|
|
style: TextStyle(fontSize: 24),
|
|
),
|
|
),
|
|
);
|
|
}
|
|
} |