in ui/lib/modules/settings/settings_screen.dart [119:172]
return SingleChildScrollView(
child: Container(
child: Column(
// crossAxisAlignment: CrossAxisAlignment.start,
children: [
Container(
width: double.infinity,
child: Center(
child: Column(
crossAxisAlignment: CrossAxisAlignment.start,
children: [
SizedBox(height: 20),
Container(width: 800, child: Text("Your workspace"))
])),
),
SizedBox(height: 10),
Center(
child: Card(
elevation: 5,
child: SizedBox(
width: 800,
height: 500,
child: Theme(
data: Theme.of(context).copyWith(
dividerColor: Colors.white,
),
child: DataTable(
headingRowHeight: 10,
dividerThickness: 0,
dataRowHeight: 40,
columnSpacing: 0,
columns: [
DataColumn(label: Text("")),
DataColumn(label: Text("")),
],
rows: [
DataRow(
cells: [
DataCell(ConstrainedBox(
constraints: BoxConstraints(maxWidth: 200),
child: Text(
'Workspace name',
style: TextStyle(color: Colors.black54),
))),
DataCell(Row(
children: [
Text('Developer Workbench'),
SizedBox(width: 5),
IconButton(
icon: new Icon(
Icons.edit,
color: Colors.black54,
),
onPressed: () {},