categoryTrendComponent method

Widget categoryTrendComponent({
  1. bool solo = true,
})

Render an interactive breakdown of the user's expenses across categories within a time period.

The user will be able to see an interactive category trend chart and category list, along with some filters in the same view.

solo determines whether this component should be rendered as a standalone view.

Implementation

Widget categoryTrendComponent({
  bool solo = true,
}) =>
    getView(
      LuneViewType.categoryTrendView,
      solo: solo,
    );