bodyContent method
Implementation
Widget bodyContent(BuildContext context) {
return Expanded(
child: Consumer<ActivityDetailProvider>(
builder: (context, provider, child) => TabBarView(
children: [
HttpRequestPage(
httpActivity: httpActivity,
),
HttpResponsePage(
httpActivity: httpActivity,
),
HttpErrorPage(
httpActivity: httpActivity,
),
],
),
),
);
}