update
This commit is contained in:
parent
5840df0879
commit
b45cf8bd73
11 changed files with 222 additions and 34 deletions
|
|
@ -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,
|
||||
);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue