import 'package:flutter/material.dart'; import 'generated/i18n.dart'; import 'homePage.dart'; import 'widgets/app_intro_page.dart'; class IntroPage extends AppIntroPage { IntroPage({super.key}) : super( items: _fireItems, onIntroFinish: (BuildContext context) => Navigator.pushNamed(context, HomePage.routeName)); static String routeName = '/intro'; static List _fireItems(BuildContext context) => [ AppIntroItem( icon: Icons.location_on, title: S.of(context).chooseAPlace), AppIntroItem( icon: Icons.panorama_fish_eye, title: S.of(context).chooseAWatchRadio), AppIntroItem( icon: Icons.whatshot, title: S.of(context).getAlertsOfFiresinThatArea), AppIntroItem( icon: Icons.notifications_active, title: S.of(context).alertWhenThereIsAFire) ]; }