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

A new Flutter package for introduction screen.

example/lib/main.dart

import 'package:flutter/material.dart';

import 'example_page.dart';

void main() {
  runApp(const MyApp());
}

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'Animated Introduction Demo',
      debugShowCheckedModeBanner: false,
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.deepPurple),
        useMaterial3: true,
      ),
      home: const ExamplePage(),
    );
  }
}