transactionsComponent method

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

Render an interactive list of all the transactions the user has made within a time period.

The list can be filtered by dates, category, and custom transaction tags. Users can search and sort transactions by date and amount. Reported transactions can be easily found using the feedback filter.

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

Implementation

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