in ui/lib/modules/my_services/widgets/build_history_widget.dart [143:157]
child: Text(
build.status == "SUCCESS" ? "Successful" : "Failed",
style: AppText.fontStyle,
),
),
SizedBox(
width: 4,
),
TextButton(
onPressed: () async {
final Uri _url = Uri.parse(build.buildLogUrl);
if (!await launchUrl(_url)) {
throw 'Could not launch $_url';
}
},