learning_explore_page top-level property

ExplorePageArguments learning_explore_page
read / write

Implementation

ExplorePageArguments learning_explore_page = ExplorePageArguments(
  title: "Learn",
  sections: [
    ExploreSectionArguments(
      title: "Learning resources by time",
      filter: TimeExploreFilter(),
      type: ExploreSectionType.Learning,
    ),
    ExploreSectionArguments(
      title: "Learning resource by cause",
      filter: ByCauseExploreFilter(),
      type: ExploreSectionType.Learning,
    ),
    ExploreSectionArguments(
      title: "Learning resources",
      type: ExploreSectionType.Learning,
    ),
    ExploreSectionArguments(
      title: "Completed learning",
      baseParams: {
        "completed": true,
      },
      backgroundColor: CustomColors.lightOrange,
      type: ExploreSectionType.Learning,
    ),
  ],
);