animated_book_widget 1.0.1 copy "animated_book_widget: ^1.0.1" to clipboard
animated_book_widget: ^1.0.1 copied to clipboard

A Flutter package providing an interactive method to display content, resembling the experience of flipping through pages.

example/lib/main.dart

import 'package:example/home_page.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(
      debugShowCheckedModeBanner: false,
      title: 'Animated Book Widget Example',
      theme: ThemeData(
        colorScheme: ColorScheme.fromSeed(seedColor: Colors.blue),
        useMaterial3: true,
      ),
      home: const MyHomePage(),
    );
  }
}
copied to clipboard
65
likes
150
points
56
downloads
screenshot

Publisher

verified publisherd-velopers.com

Weekly Downloads

2024.09.20 - 2025.04.04

A Flutter package providing an interactive method to display content, resembling the experience of flipping through pages.

Homepage
Repository (GitHub)

Documentation

API reference

License

MIT (license)

Dependencies

flutter

More

Packages that depend on animated_book_widget