Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/calsranna/book_reader
A reader use to read book.
https://github.com/calsranna/book_reader
Last synced: about 1 month ago
JSON representation
A reader use to read book.
- Host: GitHub
- URL: https://github.com/calsranna/book_reader
- Owner: CalsRanna
- License: mit
- Created: 2022-09-07T15:02:25.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2024-02-20T04:03:39.000Z (11 months ago)
- Last Synced: 2024-02-20T12:24:12.610Z (11 months ago)
- Language: Dart
- Size: 210 KB
- Stars: 6
- Watchers: 2
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE
Awesome Lists containing this project
README
# 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
```bash
flutter pub add book_reader
```## Getting started
```dart
import 'package:book_reader/book_reader.dart';void main() {
runApp(const MaterialApp(
home: Scaffold(
body: BookReader(
future: fetchChapter,
name: '测试书籍',
),
),
));
}
```