theone_book_designer 1.0.9 copy "theone_book_designer: ^1.0.9" to clipboard
theone_book_designer: ^1.0.9 copied to clipboard

The One Book Designer is a Flutter package that provides a customizable widget for displaying book page animations.

example/lib/main.dart

import 'package:flutter/material.dart';
import 'package:theone_book_designer/theone_book_designer.dart';

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

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

  @override
  Widget build(BuildContext context) {
    return MaterialApp(
      title: 'The One Book Designer Example',
      home: Scaffold(
        appBar: AppBar(
          title: const Text('Book Page Animation Example'),
        ),
        body: const TheOneBookDesigner(
          imageUrls: [
            'https://picsum.photos/160/180?random=1',
            'https://picsum.photos/160/180?random=2',
            'https://picsum.photos/160/180?random=3'
          ],
        ),
      ),
    );
  }
}
3
likes
160
points
49
downloads

Publisher

unverified uploader

Weekly Downloads

The One Book Designer is a Flutter package that provides a customizable widget for displaying book page animations.

Repository (GitHub)

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter, flutter_inappwebview

More

Packages that depend on theone_book_designer