import 'package:comunic/ui/routes/tour_route.dart'; import 'package:comunic/ui/widgets/tour/first_pane.dart'; import 'package:comunic/ui/widgets/tour/last_pane.dart'; import 'package:comunic/utils/intl_utils.dart'; import 'package:flutter/material.dart'; /// Forez tour builder /// /// Handles the presentation tour for the Forez flavor application /// /// @author Pierre Hubert List buildTour(TourRouteState state) => [ FirstTourPane( msgOne: tr( "Welcome to #Forez, the central application dedicated to events planning in the Forez plain!"), msgTwo: tr( "Let's configure the application and present you some features!"), ), LastTourPane(), ];