This commit is contained in:
Patrick Alvin Alcala 2025-02-10 09:51:04 +08:00
parent 4586256032
commit 5840df0879
16 changed files with 45 additions and 61 deletions

View file

@ -10,9 +10,9 @@ class DataTableWidget extends StatelessWidget {
Widget build(BuildContext context) {
return DataTable(
decoration: BoxDecoration(
border: Border.all(color: Colors.black, width: 1.0),
border: Border.all(color: const Color.fromRGBO(0, 0, 0, 1), width: 1.0),
borderRadius: BorderRadius.circular(12),
color: Color.fromARGB(255, 240, 240, 240),
color: const Color.fromARGB(255, 240, 240, 240),
),
headingTextStyle: GoogleFonts.outfit(textStyle: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500)),
dataTextStyle: GoogleFonts.outfit(textStyle: const TextStyle(fontSize: 14)),