UI Update

This commit is contained in:
2024-07-05 18:56:36 +02:00
parent f46711de4a
commit e09ca04e8a
3 changed files with 139 additions and 140 deletions

View File

@@ -50,24 +50,24 @@ class _PatientDetailsState extends State<PatientDetails> {
@override
Widget build(BuildContext context) {
return Container(
padding: const EdgeInsets.all(20),
padding: const EdgeInsets.only(left: 20, right: 20, bottom: 10),
decoration: BoxDecoration(
color: Colors.white,
borderRadius: BorderRadius.circular(25.0),
border: Border.all(color: Colors.blueAccent, width: 3.0),
),
//constraints: const BoxConstraints.expand(height: 250.0),
child: SelectionArea(
child: Column(
children: [
Row(
mainAxisAlignment: MainAxisAlignment.center,
//crossAxisAlignment: ,
children: [
const Text(
"Patient Details",
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 35,
fontSize: 25,
fontWeight: FontWeight.bold,
color: Colors.blueAccent,
),
@@ -196,7 +196,6 @@ class _PatientDetailsState extends State<PatientDetails> {
)
],
),
),
);
}
}

View File

@@ -553,7 +553,7 @@ class _PatientFilesState extends State<PatientFiles> {
"Files",
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 35,
fontSize: 25,
fontWeight: FontWeight.bold,
color: Colors.blueAccent,
),
@@ -589,7 +589,7 @@ class _PatientFilesState extends State<PatientFiles> {
),
const Padding(
padding: EdgeInsets.symmetric(horizontal: 20.0),
child: Divider(),
child: Divider(color: Colors.blueAccent),
),
const SizedBox(height: 10),
BuildFilesList(files: filesList),

View File

@@ -238,7 +238,7 @@ class _PatientNotesState extends State<PatientNotes> {
"Notes",
textAlign: TextAlign.center,
style: TextStyle(
fontSize: 35,
fontSize: 25,
fontWeight: FontWeight.bold,
color: Colors.blueAccent),
),
@@ -252,7 +252,7 @@ class _PatientNotesState extends State<PatientNotes> {
),
const Padding(
padding: EdgeInsets.symmetric(horizontal: 20.0),
child: Divider(),
child: Divider(color: Colors.blueAccent),
),
const SizedBox(height: 10),
BuildNotesList(notes: notesList),