bodyContent method

Widget bodyContent(
  1. BuildContext context
)

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,
          ),
        ],
      ),
    ),
  );
}