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.
31 lines
979 B
Dart
31 lines
979 B
Dart
import 'package:flutter/material.dart';
|
|
import 'package:hmg_patient_app_new/core/utils/size_utils.dart';
|
|
import 'package:hmg_patient_app_new/extensions/string_extensions.dart';
|
|
import 'package:hmg_patient_app_new/extensions/widget_extensions.dart';
|
|
import 'package:hmg_patient_app_new/theme/colors.dart';
|
|
import 'package:hmg_patient_app_new/widgets/appbar/collapsing_list_view.dart';
|
|
|
|
class ToDoPage extends StatefulWidget {
|
|
const ToDoPage({super.key});
|
|
|
|
@override
|
|
State<ToDoPage> createState() => _ToDoPageState();
|
|
}
|
|
|
|
class _ToDoPageState extends State<ToDoPage> {
|
|
@override
|
|
Widget build(BuildContext context) {
|
|
return CollapsingListView(
|
|
title: "ToDo List".needTranslation,
|
|
isLeading: false,
|
|
child: Column(
|
|
crossAxisAlignment: CrossAxisAlignment.start,
|
|
children: [
|
|
SizedBox(height: 16.h),
|
|
"Ancillary Orders".needTranslation.toText18(isBold: true),
|
|
|
|
],
|
|
).paddingSymmetrical(24.w, 0),
|
|
);
|
|
}
|
|
} |