steps property

Map<String, OnBoardScreen> steps
final

Implementation

final Map<String, OnBoardScreen> steps = {
  "Splash": OnBoardScreen(
    title: "Welcome to Bites!",
    description: "A new way to explore typical food around you.",
    image: "assets/logo-vertical.png",
  ),
  "Map": OnBoardScreen(
      title: "Explore",
      description:
          "See what's around you on the map, and tap on an area to find out more.",
      image: "assets/map21.png"),
  "Discover": OnBoardScreen(
    title: "Discover",
    description:
        "Get to know the food events happening around you, and review places you visited.",
    image: "assets/discover21.png",
  ),
  "Market": OnBoardScreen(
    title: "Market",
    description:
        "Buy the most genuine and typical products directly from the vendor",
    image: "assets/market21.png",
  ),
  "GoToApp": OnBoardScreen(
    title: "Ready? Let's get started!",
    description: "",
    image: "assets/letsgo21.png",
  ),
};