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

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()
      },
    );
  }
}
1
likes
0
points
43
downloads

Publisher

verified publisherpresswink.com

Weekly Downloads

A app walk through modules.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter, google_fonts

More

Packages that depend on app_walk_through