This commit is contained in:
Patrick Alvin Alcala 2025-02-10 17:02:37 +08:00
parent 5840df0879
commit b45cf8bd73
11 changed files with 222 additions and 34 deletions

View file

@ -10,12 +10,15 @@ class DataTableWidget extends StatelessWidget {
Widget build(BuildContext context) {
return DataTable(
decoration: BoxDecoration(
border: Border.all(color: const Color.fromRGBO(0, 0, 0, 1), width: 1.0),
border: Border.all(color: const Color.fromARGB(255, 255, 255, 255), width: 1.0),
borderRadius: BorderRadius.circular(12),
color: const Color.fromARGB(255, 240, 240, 240),
color: const Color.fromARGB(144, 82, 42, 82),
),
headingTextStyle: GoogleFonts.outfit(textStyle: const TextStyle(fontSize: 14, fontWeight: FontWeight.w500)),
dataTextStyle: GoogleFonts.outfit(textStyle: const TextStyle(fontSize: 14)),
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))),
columns: column,
rows: row,
);