funle_fb2 1.0.0+2 copy "funle_fb2: ^1.0.0+2" to clipboard
funle_fb2: ^1.0.0+2 copied to clipboard

This package provides functionality to parse FB2 files and extract information. It is designed to be easy to use and integrate into Flutter applications.

FunLe FB2 - is a package for work with FB2 files. #

This package is in development now. So it can be unstable and not work correctly. This package based on fb2_parse

Now it can:

  • Parse FB2 file for get information about book. And this can be used for display book in WebView.

In future it will:

  • Parse FB2 file for get information about book. And this can be used for display book in WebView.
  • Provide widgets for display book in Flutter app.
  • Provide library for editing of creating new FB2 files.

Usage #

  1. Add dependency to your pubspec.yaml file:
dependencies:
  funle_fb2: 1
  1. Import package in your dart file:
import 'package:funle_fb2/funle_fb2.dart';
  1. Use it:
// Create instance of FB2Parser
FB2Parser parser = FB2Parser("path/to/file.fb2");
// parse file
await parser.parse();
// get book info
String title = parser.description.title;
0
likes
160
points
0
downloads

Publisher

unverified uploader

Weekly Downloads

This package provides functionality to parse FB2 files and extract information. It is designed to be easy to use and integrate into Flutter applications.

Repository (GitHub)
View/report issues

Documentation

API reference

License

BSD-3-Clause (license)

Dependencies

flutter

More

Packages that depend on funle_fb2