expenseComponent method

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

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

The user will be able to see a category spend chart and transaction list, along with some filters in the same view.

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

Implementation

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