From b1e86a1ece3b2e41f99b8684bdfce0a8733b8d22 Mon Sep 17 00:00:00 2001 From: Patrick Alvin Alcala Date: Thu, 27 Feb 2025 15:35:28 +0800 Subject: [PATCH] update --- lib/widgets/datatable_widget.dart | 14 ++++++-------- 1 file changed, 6 insertions(+), 8 deletions(-) diff --git a/lib/widgets/datatable_widget.dart b/lib/widgets/datatable_widget.dart index 7f0cc2b..916ce11 100644 --- a/lib/widgets/datatable_widget.dart +++ b/lib/widgets/datatable_widget.dart @@ -10,15 +10,13 @@ class DataTableWidget extends StatelessWidget { Widget build(BuildContext context) { return DataTable( decoration: BoxDecoration( - border: Border.all(color: const Color.fromARGB(255, 255, 255, 255), width: 1.0), - borderRadius: BorderRadius.circular(12), - color: const Color.fromARGB(144, 82, 42, 82), + border: Border.all(color: const Color.fromRGBO(255, 255, 255, 0.474), width: 1.0), + borderRadius: BorderRadius.circular(8), + color: const Color.fromRGBO(236, 236, 236, 1), ), - headingTextStyle: GoogleFonts.outfit( - textStyle: - const TextStyle(fontSize: 14, fontWeight: FontWeight.w500, color: Color.fromRGBO(255, 255, 255, 1))), - dataTextStyle: - GoogleFonts.outfit(textStyle: const TextStyle(fontSize: 14, color: Color.fromRGBO(255, 255, 255, 1))), + headingTextStyle: GoogleFonts.inter( + textStyle: const TextStyle(fontSize: 12, fontWeight: FontWeight.w600, color: Color.fromRGBO(0, 0, 0, 1))), + dataTextStyle: GoogleFonts.inter(textStyle: const TextStyle(fontSize: 12, color: Color.fromRGBO(0, 0, 0, 1))), columns: column, rows: row, );