mirror of
https://gitlab.com/comunic/comunicmobile
synced 2024-11-22 12:59:21 +00:00
22 lines
717 B
Dart
22 lines
717 B
Dart
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<Widget> 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(),
|
|
];
|