in ui/lib/modules/settings/settings_screen.dart [181:215]
constraints: BoxConstraints(maxWidth: 200),
child: Text(
'Project ID',
style: TextStyle(color: Colors.black54),
))),
DataCell(Text(Environment.getProjectId())),
],
),
DataRow(
cells: <DataCell>[
DataCell(ConstrainedBox(
constraints: BoxConstraints(maxWidth: 200),
child: Text(
'Location',
style: TextStyle(color: Colors.black54),
))),
DataCell(Text(dotenv.get('DEFAULT_REGION'))),
],
),
DataRow(
cells: <DataCell>[
DataCell(ConstrainedBox(
constraints: BoxConstraints(maxWidth: 200),
child: Text(
'Catalog Repository',
style: TextStyle(color: Colors.black54),
))),
DataCell(
TextButton(
onPressed: () async {
final Uri _url = Uri.parse(dotenv.get("GCP_CATALOG_URL"));
if (!await launchUrl(_url)) {
throw 'Could not launch $_url';
}
},