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

A new flutter introduction package with image and animation, which you can use to show your app features or product showcase.

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(),
    );
  }
}
78
likes
0
pub points
84%
popularity

Publisher

verified publisherishworpanta.com.np

A new flutter introduction package with image and animation, which you can use to show your app features or product showcase.

Repository (GitHub)
View/report issues

License

unknown (license)

Dependencies

flutter

More

Packages that depend on animated_introduction