book_reader 0.1.22 copy "book_reader: ^0.1.22" to clipboard
book_reader: ^0.1.22 copied to clipboard

PlatformAndroid

A widget used to read a book.

Book Reader #

This is a widget use to read book, since it is still in develop, so DO NOT use it in your product environment.

Install #

flutter pub add book_reader

Getting started #

import 'package:book_reader/book_reader.dart';

void main() {
  runApp(const MaterialApp(
    home: Scaffold(
      body: BookReader(
        future: fetchChapter,
        name: '测试书籍',
      ),
    ),
  ));
}