This commit is contained in:
Patrick Alvin Alcala 2025-02-27 15:35:28 +08:00
parent 37a855cc6c
commit b1e86a1ece

View file

@ -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,
);