app_walk_through 0.0.1 copy "app_walk_through: ^0.0.1" to clipboard
app_walk_through: ^0.0.1 copied to clipboard

outdated

A app walk through modules.

example/lib/main.dart

import 'package:app_walk_through_example/second_screen.dart';
import 'package:app_walk_through_example/walk_through_screen.dart';
import 'package:flutter/material.dart';
void main() {
  runApp(const MyApp());
}

class MyApp extends StatelessWidget {
  const MyApp({super.key});

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      initialRoute: WalkThroughScreen.routeName,
      routes: {
        WalkThroughScreen.routeName: (context) => const WalkThroughScreen(),
        SecondScreen.routeName:(context) => const SecondScreen()
      },
    );
  }
}