in ui/lib/widgets/cloud_table.dart [103:148]
Widget build(BuildContext context) {
return CloudTable(
columnWidths: const {
0: FlexColumnWidth(1.5),
1: FlexColumnWidth(4),
2: FlexColumnWidth(2),
},
children: [
TableRow(
decoration: BoxDecoration(
color: Color.fromRGBO(0, 0, 0, 0.04),
),
children: [
CloudTableCell(child: CloudTableCellText(text: "Product Name")),
CloudTableCell(child: CloudTableCellText(text: "Description")),
CloudTableCell(child: CloudTableCellText(text: "Category")),
]),
TableRow(children: [
CloudTableCell(child: CloudTableCellText(text: "Cloud Run")),
CloudTableCell(
child: CloudTableCellText(
text: "Serverless for containerized applications")),
CloudTableCell(child: CloudTableCellText(text: "Serverless")),
]),
TableRow(children: [
CloudTableCell(child: CloudTableCellText(text: "SQL")),
CloudTableCell(
child: CloudTableCellText(
text: "Managed MySQL, PostgreSQL, SQL Server")),
CloudTableCell(child: CloudTableCellText(text: "Databases")),
]),
TableRow(children: [
CloudTableCell(child: CloudTableCellText(text: "Memory Store")),
CloudTableCell(
child: CloudTableCellText(text: "Managed Redis and Memcached")),
CloudTableCell(child: CloudTableCellText(text: "Databases")),
]),
TableRow(children: [
CloudTableCell(child: CloudTableCellText(text: "VPC Network")),
CloudTableCell(
child: CloudTableCellText(text: "Virtual private cloud")),
CloudTableCell(child: CloudTableCellText(text: "Networking")),
]),
],
);
}