@override
Widget build(BuildContext context) {
return ListView(children: <Widget>[
Image.network(owlUrl),
TextButton(
child: const Text(
‘Show Details’,
style: TextStyle(color: Colors.blueAccent),
),
onPressed: () => {},
),
const Column(
children: [
Text(‘Type: Owl’),
Text(‘Age: 39’),
Text(‘Employment: None’),
],
),
AnimatedOpacity(
child: const Column(
children: [
Text(‘Type: Owl’),
Text(‘Age: 39’),
Text(‘Employment: None’),
],
),
),
]);
}